/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.header {
    background-color: #001529;
    color: white;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.header-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.header-right p {
    margin: 5px 0;
    font-size: 1rem;
}

.status-online {
    color: #4CAF50;
}

.hours {
    color: #ddd;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, rgba(0, 21, 41, 0.8), rgba(0, 21, 41, 0.5)), url('/static/hero.jpg') center/cover;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero .button {
    padding: 12px 30px;
    font-size: 1.2rem;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero .button.primary {
    background-color: #4CAF50;
    color: white;
}

.hero .button.primary:hover {
    background-color: #45a049;
}

.hero .button.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.hero .button.secondary:hover {
    background-color: white;
    color: #4CAF50;
}

/* Transactions Section */
.transactions {
    margin-top: 40px;
}

.transactions h2 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.table-responsive {
    overflow-x: auto;
    max-width: 100%;
    padding: 10px;
}

.transactions-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.transactions-table th, .transactions-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.transactions-table th {
    background-color: #4CAF50;
    color: white;
}

.transactions-table td {
    background-color: white;
    color: #555;
}

.transactions-table tr:hover {
    background-color: #f9f9f9;
}

.no-data {
    text-align: center;
    color: #999;
    font-style: italic;
}

/* Footer */
.footer {
    background-color: #001529;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 60px;
}
