﻿@import url('https://fonts.googleapis.com/css2?family=Kenao+Sans+Serif&family=RoxboroughCf&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Cinzel+Decorative:wght@700&display=swap');
/* Header Styling */
.gridview {
    border-collapse: collapse;
    width:100%;
}
.gridview th {
    background-color: #4A3F35; /* Blue background */
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    font-size: 14px;
    border: 1px solid #ddd;
}

/* Row Styling */
.gridview td {
    padding: 10px;
    text-align: center;
    font-size: 13px;
    border: 1px solid #ddd;
}

/* Alternating Row Colors */
.gridview tr:nth-child(even) {
    background-color: #f2f2f2;
}
.gridview tr:nth-child(odd) {
    background-color: #ffffff;
}

/* Hover Effect */
.gridview tr:hover {
    background-color: #f1f1f1;
    transition: background-color 0.2s;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .gridview {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    .gridview th, .gridview td {
        padding: 8px; /* Slightly smaller padding for small screens */
        font-size: 12px; /* Reduce font size */
    }
}

/* Extra Small Devices (Phones) */
@media (max-width: 480px) {
    .gridview th, .gridview td {
        font-size: 11px; /* Further reduce font size */
        padding: 6px;    /* Reduce padding */
    }
}

.header-text{
    font-family: 'RoxboroughCf', serif;
    text-transform:uppercase;
    font-size:30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.updatebox-text{
    font-family: 'RoxboroughCf', serif;
}

.company-name{
    font-family: 'Cinzel Decorative', serif;
}

.no-data-image {
    display: block;
    margin: 20px auto;
    max-width: 100%; 
    height: auto;    
    text-align: center;
}

@media (max-width: 768px) {
    .no-data-image {
        width: 80%; 
    }
}

@media (max-width: 480px) {
    .no-data-image {
        width: 70%; 
    }
}