﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f4eab8;
    color: #3a2e0f;
}

.container {
    max-width: 1200px;
    margin: auto;
    background: #f4eab8;
    /* border: 1px solid #999;*/
}

/* Header Container */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #efe2a3;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* Logo */
.logo img {
    max-width: 160px;
    width: 100%;
    height: auto;
}

/* Right Section */
.header-right {
    display: flex;
    align-items: center;
}

.top-menu {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

/* Button Style */
.btn {
    background: #1e73be;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    font-size: 18px;
}

    .btn:hover {
        background: #125ea7;
        color: #fff;
    }

/* 📱 Mobile Responsive */
@media (max-width: 576px) {
    .top-menu {
        justify-content: center;
        width: 100%;
        margin-top: 10px;
    }

    .android-btn {
        flex: 1;
        text-align: center;
        padding: 10px;
        font-size: 13px;
    }
}

/* Responsive - Tablet */
@media (max-width: 992px) {
    .logo img {
        max-width: 130px;
    }
}

/* Responsive - Mobile */
@media (max-width: 576px) {
    .header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .header-right {
        width: 100%;
        justify-content: center;
    }

    .android-btn {
        width: 80%;
        text-align: center;
    }
}

.center-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===== SEARCH ===== */

.search-section {
    padding: 30px;
    text-align: center;
}

.search-box {
    display: inline-flex;
    gap: 15px;
    padding: 20px 25px;
    border-radius: 15px;
    background: #fffdf1;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

    .search-box input {
        padding: 10px 15px;
        border-radius: 8px;
        border: 1px solid #d6c97c;
        outline: none;
        background: #fff;
    }

.search-btn {
    padding: 10px 30px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    background: #b8860b;
    color: #fff;
    cursor: pointer;
    transition: .3s;
}

    .search-btn:hover {
        background: #a57405;
    }

/* ===== TABLE ===== */

.table-container {
    padding: 0px 20px;
    margin: 0px 20px;
    overflow-x: auto;
}

.rtable {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

    .rtable thead {
        background: #b8860b;
        color: #fff;
    }

        .rtable thead th {
            padding: 15px;
            font-weight: 600;
            letter-spacing: 1px;
        }

    .rtable tbody td {
        padding: 14px;
        text-align: center;
        border-bottom: 1px solid #f1e4a2;
    }

    .rtable tbody tr:nth-child(even) {
        background: #fff9dc;
    }

    .rtable tbody tr:hover {
        background: #fcefa9;
        transition: .2s ease;
    }



/* ===== MOBILE ===== */

@media(max-width:768px) {

    header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .search-box {
        width:100%;
        display: inline-flex;
        gap: 5px;
        padding: 10px 5px;
        border-radius: 15px;
        background: #fffdf1;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

    .table-container {
        padding: 0px 5px;
        margin: 0px 5px;
        overflow-x: auto;
    }
}
