﻿body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color:#ecf0f1;
}

.header {
    background-color: #2c3e50;
    color: white;
    padding: 5px 7px;
    text-align: center;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* left menu left, right menu right */
    background: #3c6382;
    padding: 0 70px;
    border-radius: 1px;
}

/* Common link style */
.navbar-left a
{
    display: block;
    padding: 2px 10px;
    color: #ecf0f1;
    margin:2px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}


    /* Hover effect */
    .navbar-left a:hover
    {
        background-color:yellow;
        color:black;
        border-radius: 3px;      
        
    }

.icon-red {
    color: lightpink; /* set icon color */
    margin-right: 5px; /* spacing between icon and text */
}
.menu a {
    color: white;
    padding: 2px 30px;
    margin:0 10px;
    text-decoration: none;
    display: inline-block;
}

    .menu a:hover {
        background-color: #1abc9c;
        border-radius: 5px;
    }

.content {
    padding: 20px;
    min-height: 400px;
}

.footer {
    background-color: #2c3e50;
    color: white;
    padding: 10px;
    text-align: center;
}
