html, body {
    color: #1a1a1a;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    height: 100%;
}

#page {
    width: 100%;
    overflow-y:auto;
    height:100%;
    margin: auto;
    background: #ffffff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

#header {
    background: #FFFFFF;
    border-bottom: 4px solid #808080;
    padding: 20px;
}

    #header h1 {
        color: #555555;
        margin: 0;
        font-size: 24px;
        font-weight: 600;
        text-shadow: none;
    }

    #header h2 {
        color: #808080;
        font-size: 16px;
        margin-top: 5px;
        font-weight: 400;
    }

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin: 0 0 10px;
}

#content {
    overflow-y:auto;
    height:100%;
    padding: 30px;
    border-radius: 0 0 6px 6px;
    border-top: none;
    background-color: #ffffff;
}

    #content h3 {
        padding-left: 0;
        font-size: 20px;
        margin-bottom: 20px;
        color: #2C456A;
    }

.access, .rssFeed, .pagehelp {
    font-size: 13px;
    color: #333;
    padding: 30px;
}

.pagehelp {
    background-color: #e9ecef;
    border-radius: 4px;
    padding: 10px;
    margin-top: 20px;
    color: #000066;
}

.pagehelp h5 {
    color: #1A1A1A;
    padding: 5px 0px;
    border-radius: 4px;
}

.pagehelp a {
    color: #0056b3;
}

.data_entry{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.data_entry ul{
    width: 75%;
    padding: 10px;
}

.data_entry ul li {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-bottom: 1em;
}

/* Style for label */
.data_entry ul li label {
    flex: 0 0 180px;
    font-weight: bold;
}

/* Style for inputs/selects */
.data_entry ul li input,
.data_entry ul li select,
.data_entry ul li .RadComboBox,
.data_entry ul li .RadPicker {
    flex: 1;
    width: 200px;
    height: 20px;
}

/* Optional: icon or info */
.data_entry ul li img {
    flex: 0 0 20px;
    height: 18px;
    cursor: pointer;
}

.data_entry h5{
    margin-top: 10px;
    padding: 10px;
}

#ctl00_phBody_transactionSearch_cbComments{
    width: auto !important;
    flex: 0.201 !important;
}

.button {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.button input[type="submit"], #ctl00_phBody_filingSearch_btnExportExcel2 {
    background-color: #2C456A;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.button input[type="submit"]:hover, #ctl00_phBody_filingSearch_btnExportExcel2:hover {
    background-color: #1e2f47;
    transform: translateY(-1px);
}

.button input[type="submit"]:active, #ctl00_phBody_filingSearch_btnExportExcel2:active {
    transform: scale(0.98);
}

<% if (IsIE7 == true) 
   {%>
   body {background-image:none;}
<% } %>

<% if (IsTest == true) 
   { %>
   body {background: url(../img/testing_bg_sm.gif) !important;}   
<% } %>