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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #333;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.dashboard-container {
    text-align: left;
    padding: 40px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 20px;
}

.header h1 {
    margin: 0;
}

.status {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

h1 {
    color: #2c3e50;
    font-size: 24px;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

h2 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 20px;
}

p {
    line-height: 1.6;
    color: #666;
    font-size: 15px;
    margin-bottom: 15px;
}

.links-section {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link {
    margin-top: 0;
    display: inline-block;
    color: #2c3e50;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 20px;
    background: #f0f0f0;
    border-radius: 6px;
    transition: all 0.2s;
}

.link:hover {
    color: #fff;
    background: #4CAF50;
    text-decoration: none;
}

.back-link {
    margin-top: 20px;
}

.subtle-link {
    color: #aaa;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s;
}

.subtle-link:hover {
    color: #888;
    text-decoration: underline;
}

.footer {
    margin-top: 40px;
    font-size: 11px;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer.small {
    text-align: center;
    color: #999;
    font-size: 12px;
}

.status-badge {
    color: #2e7d32;
    font-weight: 600;
}

/* Forms */
.login-form {
    margin: 30px 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.2);
}

.error-message {
    background: #ffebee;
    color: #c62828;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

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

.btn-primary:hover {
    background: #45a049;
}

.btn-small {
    padding: 8px 16px;
    background: #f0f0f0;
    color: #333;
}

.btn-small:hover {
    background: #e0e0e0;
}

.btn-style {
    background: none;
    border: none;
    padding: 0;
    color: inherit;
    cursor: pointer;
    text-decoration: none;
    font-size: inherit;
}

.btn-style:hover {
    text-decoration: underline;
}

/* Menu */
.menu {
    margin: 30px 0;
}

.menu-section {
    margin-bottom: 30px;
}

.menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-list li {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #4CAF50;
}

.menu-item {
    display: block;
    color: #2c3e50;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
    text-decoration: none;
}

.menu-item:hover {
    color: #4CAF50;
}

.menu-desc {
    display: block;
    color: #999;
    font-size: 12px;
    margin-top: 5px;
}

.login-container {
    max-width: 400px;
}

.login-container h1 {
    text-align: center;
    margin-bottom: 30px;
}
