* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Prompt', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #8DC63F;
    min-height: 100vh;
    padding: 0.5rem;
    margin: 0;
    color: #000000;
}

.container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.header-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    text-align: center;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(100, 178, 50, 0.3);
}

.btn:active {
    transform: translateY(0);
}

.btn-sheet {
    background: #64b232;
}

.btn-sheet:hover {
    background: #559928;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #64b232;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin: 0;
}

table {
    border-collapse: collapse;
    width: 100%;
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    font-size: 2.5rem;
}

th, td {
    padding: 1.25rem 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

th {
    background: #64b232;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 2.25rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

td {
    font-size: 2.5rem;
    font-weight: 500;
}

tr:hover {
    background-color: #f5f5f5;
    transition: background-color 0.2s;
}

tr:last-child td {
    border-bottom: none;
}

.loading {
    text-align: center;
    padding: 1.875rem;
    color: #666;
    font-size: 2rem;
    font-weight: 500;
}

@media (max-width: 480px) {
    body {
        padding: 0.5rem;
    }

    .card {
        padding: 1.5rem;
        border-radius: 0.75rem;
    }

    h1 {
        font-size: 2.25rem !important;
    }

    th, td {
        padding: 1rem 0.75rem;
        font-size: 2.25rem;
    }

    th {
        font-size: 2rem;
    }

    .btn {
        font-size: 2.25rem;
        padding: 1rem;
    }

    .status-bar-text {
        font-size: 2.25rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .container {
        max-width: 100%;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
