/* ===================================
   ADMIN PANEL STYLES
   =================================== */

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

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #000;
    background: #FFFFFF;
    line-height: 1.6;
}

/* Alert Styles */
.alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-error {
    background: #FFE5E5;
    color: #D32F2F;
    border-left: 4px solid #D32F2F;
}

.alert-success {
    background: #E5F5E5;
    color: #388E3C;
    border-left: 4px solid #388E3C;
}

.alert-info {
    background: #E3F2FD;
    color: #1976D2;
    border-left: 4px solid #1976D2;
}

/* Button Styles */
.btn, button {
    font-family: inherit;
    transition: all 0.3s ease;
}

/* Table Styles */
table {
    font-size: 14px;
}

thead {
    background: #F5F5F7;
}

th {
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: #000;
}

td {
    padding: 12px;
}

tbody tr:nth-child(even) {
    background: #F9F9F9;
}

tbody tr:hover {
    background: #F5F5F7;
}

/* Form Styles */
form {
    max-width: 600px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select,
textarea {
    font-family: inherit;
    font-size: 14px;
}

textarea {
    resize: vertical;
}

/* Responsive */
@media (max-width: 768px) {
    .admin-container {
        padding: 20px 10px;
    }
    
    table {
        font-size: 12px;
    }
    
    th, td {
        padding: 8px;
    }
}
