/*So far this css file is the style file for the index page*/
BODY {
    background: #e0e5ec;
    font-family: Tahoma, Arial, sans-serif;
    font-size: 15px;
    color: #333;
    margin: 0;
    padding: 5px;
}


/*This area here is where you enter the advisor name and password entry*/
.EDIT{
background:#ffffff ;
color:#333;
font-family: Tahoma,Arial;
font-size:15px;
padding: 8px;
border-radius: 5px;
border: 1px solid #ccc;
width: 100%;
box-sizing: border-box;
}

.VIEWBOX{
background:#ffffff ;
color:#333;
font-family: Tahoma,Arial;
font-size:15px;
padding: 8px;
border-radius: 5px;
border: 1px solid #ccc;
}

.VIEWBOXCAPTION{
color:#0078D7;
font-weight:bold;
padding-bottom: 4px;
display: inline-block;
}


/*This chnages the styling for the login box*/
.CONTENT {
    background: #ffffff;
    color: #333;
    font-family: Tahoma,Arial;
    font-size: 15px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
    max-width: 800px;
    margin: 0 auto;
}

.BUTTON,
.BUTTONITEM {
    background: #0078D7;
    color: white;
    font-family: Verdana;
    font-size: 13px;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .BUTTON:hover,
    .BUTTONITEM:hover {
        background: #005fa3;
    }

/* Grid Styles */
.GRIDHEAD {
    background: #333;
    color: white;
    font-weight: bold;
    padding: 6px;
}

.ROW1 {
    background: #f0f4f8;
}

.ROW2 {
    background: #e6ecf3;
}

.ROW3 {
    background: #dde7df;
}

.ROW4 {
    background: #d0dcd4;
}