
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #fcfbfa;
    color: #333333;
    line-height: 1.6;
}


.hero { 
    height: 250px; 
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("images/heroimage.jpg"); 
    background-position: center; 
    background-size: cover;
    display: flex; 
    justify-content: center; 
    align-items: center; 
    color: white; 
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
} 

.hero h1 {
    font-size: 2.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}


.main-layout { 
    display: flex; 
    flex-direction: row; 
    gap: 30px; 
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
} 


.navigation-view, .navigation-add { 
    width: 20%; 
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    height: fit-content;
} 

.navigation-view { order: 1; } 
.navigation-add { order: 3; } 


nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}


nav::before {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 5px;
}
.navigation-view nav::before { content: "Manage Dashboard"; }
.navigation-add nav::before { content: "Quick Actions"; }


nav a {
    color: #4a4a4a;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 6px;
    background-color: #f7f5f3;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

nav a:hover {
    background-color: #d4af37;
    color: white;
    transform: translateX(3px);
}


.content { 
    width: 55%; 
    order: 2; 
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    min-height: 400px;
}


.content h2 {
    color: #222;
    margin-bottom: 20px;
    border-bottom: 2px solid #f2f0ec;
    padding-bottom: 10px;
}





.content h2, .content h3 {
    color: #222;
    margin-bottom: 20px;
    border-bottom: 2px solid #f2f0ec;
    padding-bottom: 10px;
}


.content table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-size: 0.95rem;
}

.content th {
    background-color: #f7f5f3;
    color: #4a4a4a;
    text-align: left;
    padding: 12px;
    font-weight: 600;
    border-bottom: 2px solid #e2ded9;
}

.content td {
    padding: 12px;
    border-bottom: 1px solid #f2f0ec;
    color: #555;
}


.content tr:nth-child(even) {
    background-color: #faf9f7;
}


.content form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 100%;
}

.content label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #4a4a4a;
    margin-bottom: -5px;
}


.content input[type="text"],
.content input[type="email"],
.content input[type="date"],
.content input[type="time"],
.content input[type="password"],
.content select,
.content textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #dcdad6;
    border-radius: 6px;
    font-size: 0.95rem;
    background-color: #fff;
    outline: none;
    transition: border-color 0.2s;
}


.content input:focus,
.content select:focus,
.content textarea:focus {
    border-color: #d4af37; 
}


.content button,
.content input[type="submit"] {
    background-color: #333;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 10px;
    width: fit-content;
}

.content button:hover,
.content input[type="submit"]:hover {
    background-color: #d4af37;
}

.site-footer {
    text-align: center;
    padding: 25px 20px;
    margin-top: 40px;
    background-color: #f7f5f3;
    border-top: 1px solid #e2ded9;
    color: #777;
    font-size: 0.9rem;
    font-style: italic;
}
