﻿/* ===== GLOBAL ===== */
body {
    background-color: ghostwhite;
    font-family: 'Gill Sans', Calibri, sans-serif;
    font-size: medium;
    line-height: 1.5;
    color: #333;
}

/* ===== NAVBAR ===== */
.container_menu {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #333;
    text-align: center;
    color: ghostwhite;
    border-bottom: 2px solid #994c4c;
    z-index: 1000;
}

.menu_list {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.menu_item a {
    display: block;
    color: ghostwhite;
    text-decoration: none;
    padding: 14px 20px;
    transition: 0.3s;
}

.menu_item a:hover {
    background-color: #111;
}

.menu_item a.active {
    background-color: #994c4c;
}

/* ===== SEARCH SECTION ===== */
.container_search_data {
    max-width: 900px;
    margin: 120px auto 30px auto;
    padding: 20px;
    background-color: #F5F5F5;
    border-radius: 8px;
}

.table-search-box {
    width: 100%;
}

.table-search-box td {
    padding: 10px;
}

/* ===== RESULT CARDS ===== */
.table-search-result {
    width: 100%;
    margin-top: 20px;
}

.table-search-result td {
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: 0.2s ease-in-out;
}

.table-search-result td:hover {
    transform: scale(1.02);
}

/* ===== BUTTONS ===== */
.button-style {
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    color: #994c4c;
    background-color: #fff;
    border: 2px solid #994c4c;
    border-radius: 5px;
    transition: 0.3s;
}

.button-style:hover {
    background-color: #994c4c;
    color: #fff;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination a {
    padding: 8px 12px;
    margin: 0 4px;
    color: #333;
    border: 1px solid #ddd;
    text-decoration: none;
}

.pagination a.active {
    background-color: #994c4c;
    color: white;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

    .container_search_data {
        margin-top: 100px;
        padding: 15px;
    }

    .table-search-result td {
        padding: 15px;
        font-size: 14px;
    }

    .button-style {
        width: 100%;
    }
}

body{
    background: ghostwhite;
    color:#333;
}
.theme-btn{
    background:#994c4c;
    color:white;
    border:none;
}
.theme-btn:hover{
    background:#7d3c3c;
}
.card{
    border-radius:12px;
    box-shadow:0 4px 12px rgba(0,0,0,0.05);
}
.blog-card{
    transition:0.3s;
}
.blog-card:hover{
    transform:translateY(-5px);
}


.google-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    background-color: #ffffff;
    color: #3c4043;
    border: 1px solid #dadce0;

    font-weight: 500;
    font-size: 14px;

    padding: 8px 16px;
    border-radius: 4px;

    transition: all 0.2s ease;
    text-decoration: none;
}

.google-login-btn:hover {
    background-color: #f7f8f8;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    text-decoration: none;
    color: #202124;
}

.google-login-btn img {
    width: 18px;
    height: 18px;
}

.google-popup{
    display:none;
    position:fixed;
    top:20px;
    right:20px;
    width:300px;
    background:white;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.15);
    z-index:9999;
    animation:slideIn 0.3s ease;
}

.popup-header{
    padding:12px 15px;
    font-weight:600;
    border-bottom:1px solid #eee;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.popup-close{
    cursor:pointer;
    font-size:18px;
}

.popup-body{
    padding:15px;
}

.popup-text{
    font-size:14px;
    margin-bottom:12px;
    color:#555;
}

@keyframes slideIn{
    from{transform:translateX(30px);opacity:0;}
    to{transform:translateX(0);opacity:1;}
}

