﻿
body {
    font-family: 'SF Pro', sans-serif;
    font-size: 16px;
    line-height: 1.35;
    color: #333;
    margin: 0;
    padding: 0;
}

.message-warning {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #dd6b28;
    padding: 5px;
    margin: 5px 0;
    display: block;
}

.message-label {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #2D83B9;
    padding: 5px;
    margin: 5px 0;
    display: block;
}

.validation-error {
    font-family: 'SF Pro', sans-serif;
    font-size: 12px;
    color: red;
    padding: 0px 3px 0px 15px;
}

ul {
    font-family: 'SF Pro', sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.profile-image {
    width: 86px;
    height: 91px;
}

.content {
    min-height: calc(100vh - 182px);
    padding: 0px 15px 15px 15px;
}

.footer {
    background-color: #0C3660;
    height: 60px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
    position: fixed;
    bottom: 0;
    width: 100%;
    box-sizing: border-box;
}

    .footer .inset-bottomcorner {
        position: absolute;
        top: -16px;
        left: 0px;
        width: 16px;
        height: 16px;
        z-index: 1;
    }

.navbar-top {
    background-color: #497898; /* #395D8A                       #3E8271 grn #486EA2 purplishious */
    color: white;
    display: flex;
    align-items: center;
    padding: 8px 15px;
    height: 45px; /* Smaller height for top navbar */
    position: relative;
}

    .navbar-top .logo {
        position: absolute;
        top: 5px; /* Adjust to vertically center the logo */
        left: 15px;
        width: 40px;
        height: 43px;
        z-index: 1;
    }

    .navbar-top .inset-corner {
        position: absolute;
        top: 65px;
        left: 0px;
        width: 16px;
        height: 16px;
        z-index: 1;
    }

    .navbar-top .title {
        font-size: 18px;
        font-weight: bold;
        margin-top: 0px;
        margin-left: 50px; /* Adjust margin to fit next to the logo */
        white-space: nowrap;
        z-index: 1;
    }

    .navbar-top ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
        display: flex;
        white-space: nowrap;
        gap: 20px;
        margin-left: 35px; /* calc(250px + 15px) Adjust to align with content plus padding */
    }

        .navbar-top ul li {
            display: inline-block; /* Changed to inline-block to allow positioning */
            padding: 20px 10px; /* Adjusted padding */
            position: relative; /* Necessary for positioning the triangle */
            /*display: inline;
            padding: 20px 10px 20px 10px;*/
        }

            .navbar-top ul li a {
                color: white;
                text-decoration: none;
            }

                .navbar-top ul li a:hover {
                    background-color: #3E6A89;
                    border-radius: 5px;
                }

            /* CSS for the active menu item */
            .navbar-top ul li.active {
                background-color: #304D77; /* Darker background for the active page */
                color: white;
                border-left: 1px solid #7B8AB1;
                border-right: 1px solid #7B8AB1;
            }

                /* Triangle indicator for the active menu item */
                .navbar-top ul li.active::after {
                    content: "";
                    position: absolute;
                    bottom: 0px;
                    left: 50%; /* Start positioning from the middle of the element */
                    transform: translateX(-50%); /* Center the triangle horizontally */
                    width: 0;
                    height: 0;
                    border-left: 6px solid transparent;
                    border-right: 6px solid transparent;
                    border-bottom: 10px solid #94a6c2ff; /* Triangle color */
                }

                /* Style for the horizontal line */
                .navbar-underline {
                    position: relative;
                    top: -3px;
                    width: 100%; /* Full width of the page */
                    height: 2px; /* Thickness of the line */
                    background-color: #94a6c2ff; /* Same color as the triangle */
                    margin-top: 0; /* No extra space above */
                    margin-bottom: 0px; /* Adjust if you need space between the line and the content below */
                }

                .navbar-underline2 {
                    position: relative;
                    top: -3px;
                    width: 100%; /* Full width of the page */
                    height: 5px; /* Thickness of the line */
                    background-color: #497898; /* Same color as the triangle */
                    margin-top: 0; /* No extra space above */
                    margin-bottom: 20px; /* Adjust if you need space between the line and the content below */
                }



.navbar-left {
    background-color: #497898; /* #3E8271 grn  #486EA2 purplishious */
    color: white;
    position: fixed;
    top: 20px; /* Adjust according to the height of the top navbar */
    left: 0;
    height: calc(100% - 20px); /* Adjust according to the height of the top navbar */
    width: 250px; /* Adjust to the required width */
    padding: 15px;
    box-sizing: border-box;
}

    .navbar-left ul {
        list-style-type: none;
        margin: 60px 0px 0px 0px;
        padding: 0;
    }

        .navbar-left ul li {
            margin-bottom: 10px;
        }

            .navbar-left ul li a {
                color: white;
                text-decoration: none;
                padding: 10px 15px;
                display: block;
            }

                .navbar-left ul li a:hover {
                    background-color: #3E6A89;
                    border-radius: 5px;
                }


.navbar-right {
    display: flex;
    justify-content: flex-end; /* Right-justify the content */
    align-items:end; /* Vertically center items */

    width:370px;
}

.user-info {
    /* Optional: Style the user-info section */
}

.user-info-label {
    /* Optional: Style the label within the user-info section */
    font-family: 'SF Pro', sans-serif;
    font-size: 12px;
}


/* Example CSS for headings */
h1, h2, h3, h4, h5, h6 {
    font-family: Arial, sans-serif; /* Consistent font family for headings */
    color: #000; /* Typically, headings are darker for emphasis */
    margin: 0px 0px 20px 0px;
}

h1 {
    font-size: 24px; /* Size for main headings */
}

h2 {
    font-size: 20px; /* Size for subheadings */
}

h3 {
    font-size: 18px; /* Size for smaller headings */
}

#img_avatar {
    margin: 0px 0px 0px 20px;
    width: 300px;
    height: 300px;
    border: 1px solid #a99848;
    border-radius: 10px;
}

#lbtnForgot {
    color: #2e87c3;
    font-size: .85em;
    font-weight: normal;
    text-decoration: none;
}

.copyright {
    color: white;
    font-size: .85em;
    font-weight: normal;
}

.address {
    color: white;
    font-size: .85em;
    font-weight: normal;
}

.social-media {
    height: 25px;
}
/* Link styles */
a:link, a:visited {
    color: white;
}

a:hover, a:active {
    color: yellow;
}

.heading {
    padding: 0px 0px 20px 0px;
}

.textbox-style {
    width: 100%;
    padding: 2px 5px 2px 5px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    width: 300px;
}

.short {
    width: 200px;
}
.shorter {
    width: 100px;
}

.error-message {
    color: red;
    font-size: 12px;
    margin-left: 10px;
    display: inline-block;
}

.rev-warning {
    color: white;
    background-color: red;
    padding: 1px 3px 1px 3px;
}

.response-message {
    color: red;
    font-size: 12px;
    padding: 2px 0px 2px 0px;
}

.srvy-heading {
    padding: 2px 0px 2px 0px;
}

.srvy-question {
    font-size: 14px;
    padding: 10px 0px 0px 0px;
}

.srvy-answer {
    font-size: 14px;
    padding: 0px 10px 0px 10px;
    height: 20px;
}

    input[type="text"] {
        padding: 0px 10px 0px 10px;
    }

        input[type="text"][readonly] {
            padding: 0px 10px 0px 10px;
        }

        input[type="text"][multiline] {
            padding: 0px 10px 0px 10px;
        }

.srvy-answer-cell {
    font-size: 14px;
    padding: 0px 10px 0px 10px;
    line-height: 1.5;
}

    .srvy-answer-cell input[type="radio"] {
        margin-right: 8px; /* Adds spacing between the radio button and the label */
    }

    .srvy-answer-cell label {
        padding-right: 10px; /* Adds space to the right of the label text */
    }

.srvy-answer-multiline {
    padding: 10px;
    line-height: 1.5;
    font-size: 14px;
    width: 400px;
    height: 110px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    resize: none; /* Prevents resizing by the user */
}

.srvy-answer-dropdown {
    font-size: 14px;
    padding: 2px 10px 2px 10px;
}

.response-table {
    font-size: 14px;
    border-collapse: collapse;
    margin-top: 20px;
}

    .response-table th, .response-table td {
        border: 1px solid #ddd;
        padding: 3px 5px 3px 5px;
    }

    .response-table th {
        background-color: #f2f2f2;
    }
