@font-face {
    font-family: 'SolaimanLipi';
    src: url('path-to-font/SolaimanLipi.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'SolaimanLipi', 'Roboto', sans-serif;
    font-size: 14px; 
}

h1, h2, h3, h4, h5 {
    font-size: 1.2rem; 
}

#searchInput {
    max-width: 400px;
}

.custom-header {
    background-color: #ffffff !important;
    position: relative;
}

.custom-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px; 
    background-color: #8F0000; 
}

.customer-service-btn {
    color: #b90000;
    font-weight: bold;
    font-size: 18px;
    text-decoration: none;
}

.customer-service-btn:hover {
    text-decoration: underline;
}


.search-card {
    max-width: 400px;
    width: 100%;
    border-radius: 12px;
    background: #fff;
}

.search-card label {
    font-size: 12px;
}

.search-card input, 
.search-card select {
    border-radius: 5px;
}

.search-card button {
    border-radius: 5px;
    font-size: 12px;
    padding: 8px;
}

/* ----------- responsive table ----------- */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
    /* table-layout: fixed;  */
}

table thead th {
    background-color: #ffffff !important;     
    color: #000; 
    border: 1px solid #ddd; 
}


table th, table td {
    text-align: center;
    vertical-align: middle;
    padding: 6px; 
    font-size: 14px; 
    white-space: nowrap; 
}

/* column width */
table th:nth-child(1), table td:nth-child(1) { width: 10%; }
table th:nth-child(2), table td:nth-child(2) { width: 25%; }
table th:nth-child(3), table td:nth-child(3) { width: 15%; }
table th:nth-child(4), table td:nth-child(4) { width: 25%; }
table th:nth-child(5), table td:nth-child(5) { width: 25%; }

/* WhatsApp icon size */
table td a i.fab.fa-whatsapp,
.navbar a i.fab.fa-whatsapp {
    font-size: 18px !important;  
    padding: 2px !important;     
}

table td a img {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
}


.fade-row {
    animation: fadeZoomIn 0.5s ease-in-out;
}

@keyframes fadeZoomIn {
    from {
        opacity: 0;
        transform: scale(0.95); 
        background-color: transparent;
    }
    to {
        opacity: 1;
        transform: scale(1); 
        background-color: #fff9a8; 
    }
}


@keyframes fadeIn {
    from { background-color: transparent; opacity: 0; }
    to { background-color: yellow; opacity: 1; }
}


.card-title {
    color: #323232!important;   
    font-size: 18px !important;
    font-weight: 800;
}

.footer-links a {
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: #ff5722; 
}

.otherspage-container {
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
    font-size: 15px;
}

.otherspage-container h2 {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    text-align: center;
}

.otherspage-container h3 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #333;
}

.otherspage-container p {
    margin-bottom: 15px;
    color: #555;
}

.otherspage-container a {
    color: #ff5722;
    text-decoration: none;
    font-weight: 500;
}

.otherspage-container a:hover {
    text-decoration: underline;
}

/* Odd rows â€” apply to the cells (most specific) */
.table.table-striped > tbody > tr:nth-of-type(odd) > * {
  background-color: #f8fdff !important;
}
       

/* ----------- responsive fixes ----------- */
@media (max-width: 576px) {
    table th, table td {
        font-size: 12px; 
        padding: 4px;
    }
}
