body {
    background: yellow;
}

/* General Layout */
body {
    font-family: Arial, sans-serif;
    margin: 0;
}

/* Header */
header {
    background: #003366;
    color: white;
    padding: 20px;
    text-align: center;
}

nav a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: #e6f2ff;
    padding: 40px;
    text-align: center;
}




/* Forms */
form {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
}

form input, form select, form textarea {
    margin-bottom: 15px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    padding: 12px;
    background: #003366;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 4px #00264d;
    transition: all 0.2s ease;
}

form button:hover {
    background: #00509e;
    box-shadow: 0 2px #001a33;
    transform: translateY(1px);
}

/* Login Container */
.login-container {
    width: 300px;
    margin: 100px auto;
    background: white;
    padding: 30px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.login-container h2 {
    margin-bottom: 20px;
    color: #003366;
}

.login-container input {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.login-container button {
    width: 100%;
    padding: 10px;
    background: #003366;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 4px #00264d;
}

.back-link {
    margin-top: 15px;
}

.back-link a {
    text-decoration: none;
    color: #003366;
}

/* Dashboard Layout */
.dashboard-container {
    display: flex;
    height: 100vh;
}




.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li {
    margin: 15px 0;
}

.sidebar a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: inset 0 0 0 rgba(255,255,255,0.2);
}




/* Main Section */
.dashboard-main {
    flex: 1;
    padding: 40px;
    background: #f4f4f4;
    overflow-y: auto;
}

/* Register link */
.register-link a {
    text-decoration: none;
    color: #0066cc;
}

/* Action Buttons (Edit/Delete) */
.action-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    margin-right: 5px;
    font-size: 13px;
    cursor: pointer;
    transition: transform 0.1s ease, box-shadow 0.2s ease;
}

.action-btn.edit {
    background-color: #ffc107;
    color: #000;
    box-shadow: 0 3px #cc9a06;
}

.action-btn.delete {
    background-color: #dc3545;
    color: #fff;
    box-shadow: 0 3px #a71d2a;
}

.action-btn:hover {
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}


.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    font-weight: bold;
    color: #003366;
    cursor: pointer;
}

/* Settings Form */
.settings-form {
    background: white;
    padding: 30px 20px;
    border-radius: 6px;
    max-width: 600px;
    margin: 0 auto 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}




/* Button Colors */
.feature-blue    { background-color: #007bff; }
.feature-green   { background-color: #28a745; }
.feature-orange  { background-color: #ff6600; }
.feature-cyan    { background-color: #00bcd4; }
.feature-purple  { background-color: #6f42c1; }
.feature-red     { background-color: #dc3545; }
