﻿/* DEFAULTS
----------------------------------------------------------*/

body   
{
   font-family:Verdana;
	font-size: 12px;
	color: #330000;
	margin:0px ;
	margin:0 auto;
	vertical-align:top;
	background-color:#fffdd6;
}
/*tr:nth-child(even) {background: #CCC}
tr:nth-child(odd) {background: #FFF}*/
.linkbutton
{color:Black;
    text-decoration:none;
}
a:link, a:visited
{
    color: #0724b1; /*#034af3;*/ /*#034af3;*/
   
}

a:hover
{
    color: #1d60ff;
    text-decoration: none;
}

a:active
{
    color: #0724b1; /*#034af3;*/ /*#034af3;*/
}

p
{
    margin-bottom: 10px;
    line-height: 1.6em;
}

.copyRight1 p {
   
    color: white;
    font-weight: bold;
}


/* HEADINGS   
----------------------------------------------------------*/

h1, h2, h3, h4, h5, h6
{
    font-size: 1.5em;
    color: #330000;
    text-transform:none;
    font-weight: 200;
    margin-bottom: 0px;
}

h1
{
    font-size: 1.6em;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

h2
{
    font-size: 1.5em;
    font-weight: 600;
}

h3
{
    font-size: 1.2em;
    font-weight:bold;
}

h4
{
    font-size: 1.1em;
}

h5, h6
{
    font-size: 1em;
}

/* this rule styles <h1> and <h2> tags that are the 
first child of the left and right table columns */
.rightColumn > h1, .rightColumn > h2, .leftColumn > h1, .leftColumn > h2
{
    margin-top: 0px;
}
.footer2
{
  height:30px;
    background-color:#465C71;
    text-align: center;
    color:White;
  
}
.Button {
    background-color: #007bff;
    color: white;
    border: 1px solid #007bff;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.15s ease-in-out;
}

/*====================Zubair CSS ===================*/

/* Styling for dropdowns (select elements) */
select {
    display: block; /* Makes it a block-level element */
    width: 80%; /* Full width by default */
    padding: 0.375rem 0.75rem; /* Padding similar to Bootstrap */
    font-size: 1rem; /* Set a standard font size */
    line-height: 1.3; /* Adjust line height */
    color: #495057; /* Text color */
    background-color: #fff; /* Background color */
    background-clip: padding-box;
    border: 1px solid #ced4da; /* Light gray border */
    border-radius: 0.25rem; /* Rounded corners */
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; /* Smooth transitions */
    appearance: none; /* Removes the default OS-specific dropdown arrow */
}

    /* Focus state */
    select:focus {
        border-color: #80bdff; /* Blue border on focus */
        outline: 0; /* Remove default focus outline */
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); /* Blue glow */
    }

    /* Optional: Add a custom dropdown arrow */
    select::after {
        content: '▼'; /* Custom arrow symbol */
        position: absolute;
        right: 1rem;
        pointer-events: none;
    }

/* Set a consistent width for all textboxes */
/* Styling for single-line textboxes */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"] {
    display: block; /* Makes it a block-level element */
    width: 80%; /* Full width by default */
    padding: 0.375rem 0.75rem; /* Padding similar to Bootstrap */
    font-size: 1rem; /* Set a standard font size */
    line-height: 1.3; /* Adjust line height */
    color: #495057; /* Text color */
    background-color: #fff; /* Background color */
    background-clip: padding-box;
    border: 1px solid #ced4da; /* Light gray border */
    border-radius: 0.25rem; /* Rounded corners */
    box-shadow: inset 0 1px 2px rgb(0 0 0 / 8%); /* Subtle inner shadow */
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; /* Smooth transitions */
}

/* Styling for multi-line textboxes */
textarea {
    display: block;
    width: 80%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.3;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    box-shadow: inset 0 1px 2px rgb(0 0 0 / 8%);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

    /* Focus state for both input and textarea */
    input[type="text"]:focus,
    input[type="password"]:focus,
    input[type="email"]:focus,
    input[type="number"]:focus,
    textarea:focus {
        border-color: #80bdff;
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    }

/* Custom Danger Button */
.btn-danger {
    background-color: #dc3545;
    color: white;
    border: 1px solid #dc3545;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.15s ease-in-out;
}

    .btn-danger:hover {
        background-color: #c82333;
        border-color: #bd2130;
    }
/* Custom Primary Button */
.btn-primary {
    background-color: #007bff;
    color: white;
    border: 1px solid #007bff;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.15s ease-in-out;
}

    .btn-primary:hover {
        background-color: #0056b3;
        border-color: #004085;
    }

/* Custom Secondary Button */
.btn-secondary {
    background-color: #6c757d;
    color: white;
    border: 1px solid #6c757d;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.15s ease-in-out;
}

    .btn-secondary:hover {
        background-color: #5a6268;
        border-color: #545b62;
    }
/* PRIMARY LAYOUT ELEMENTS   
----------------------------------------------------------*/

.page
{
    /*width: 1024px;*/


    width: 90%;
    background-color: #fff;
    margin: 20px auto 0px auto;
    
}

.pagePost {
  
    width: 90%;
    background-color: #fff;
    margin: 20px auto 0px auto;
}

.header
{
    position: relative;
    margin: 0px;
    padding: 0px;
    background:#4a4823;/*#ff6501;*//*#ff6501;*/
    width: 100%;
    border: 1px solid #e09a3b;
    border-radius: 3px 3px 0px 0px;
   
}
.header2
{
    position: relative;
    margin: 0px;
    padding: 0px;
  
    width: 100%;
    border: 1px solid #e09a3b;
    border-radius: 3px 3px 0px 0px;
   
}
.header h1
{
    align:centre; background-color:#6c7f93;   text-align:center; font-size:22px; font-weight:bold; color:#fff; margin-bottom:20px;
    font-family: "tahoma", Arial;
  /*  text-shadow: 0 -1px 2px #55bf3b;*/
     background: transparent url(../MastheaderNew.png) no-repeat center ;
    
}




.main
{
    padding: 0px 12px;
    margin:0px -2px 0px 0px;
    min-height: 420px;
    border: 1px solid #e09a3b;
    border-radius:0px 0px 3px 3px;
}

.leftCol
{
    padding: 6px 0px;
    margin: 12px 8px 8px 8px;
    width: 200px;
    min-height: 200px;
}

.footer
{
    color: #4e5766;
    padding: 8px 0px 0px 0px;
    margin: 0px auto;
    text-align: center;
    line-height: normal;
}


/* TAB MENU   
----------------------------------------------------------*/
.title
{
    background-color:#d6dc9f;/*#e6ac39;*//*#e6ac39;*/
    width:100%;
    height:"50px";
    border-radius:5px 5px 5px 5px;
    
    padding:10px 0px 10px 0px;
    align:center;
}

.titleIn
{
    background-color:#e6ac39;
    width:100%;
    height:auto;
    border-radius:5px 5px 5px 5px;
    align:center;
}
.titleNote {
    background-color: #fffdd6;
    width: 98%;
    height: auto;
    border-radius: 5px;
    border: 1px solid #e09a3b;
    padding: 7px; /* Adjust padding as needed */
}

.title a
{
   font-size:12px;  color:#fff;
  text-align:center;
   
   
}

.divlink
{
    background-color:#ebdada;
    width:100%;
    height:auto;
    border-radius:8px 8px 8px 8px;
    
    padding:10px 0px 10px 0px;
    
}
.divlink1
{
    background-color:#ebdada;
    width:65%;
    height:auto;
    border-radius:8px 8px 8px 8px;
    
    padding:10px 0px 10px 0px;
    
}
div.hideSkiplink
{
    background-color:#3a4f63;
    width:100%;
}

div.menu
{
    padding: 4px 0px 4px 8px;
}

div.menu ul
{
    list-style: none;
    margin: 0px;
    padding: 0px;
    width: auto;
    
    
}

div.menu ul li a, div.menu ul li a:visited
{
    background-color: #465c71;
    border: 1px #4e667d solid;
    color: #dde4ec;
    display: block;
    line-height: 1.35em;
    padding: 4px 20px;
    text-decoration: none;
    white-space: nowrap;
}

div.menu ul li a:hover
{
    background-color: #bfcbd6;
    color: #465c71;
    text-decoration: none;
}

div.menu ul li a:active
{
    background-color: #465c71;
    color: #cfdbe6;
    text-decoration: none;
}

/* FORM ELEMENTS   
----------------------------------------------------------*/

fieldset
{
    margin: 1em 0px;
    padding: 1em;
    border: 1px solid #ccc;
}

fieldset p 
{
    margin: 2px 12px 10px 10px;
}

fieldset.login label, fieldset.register label, fieldset.changePassword label
{
    display: block;
}

fieldset label.inline 
{
    display: inline;
}

    font-weight: 600;
    padding: 2px 4px 8px 4px;
}

input.textEntry 
{
   height:18px;
	border:1px solid #b3c1ce;
	background:#fff;
	font-size:12px;
	font-family:Tahoma, Arial;
	padding:2px 3px;
	resize:none;
}

input.passwordEntry 
{
    width: 320px;
    border: 1px solid #ccc;
}
input:focus, select:focus{
    background-color: #fffdd6;
}
div.accountInfo
{
    width: 42%;
}

div.accountInfo
{
    width: 42%;
}

/* MISC  
----------------------------------------------------------*/

.clear
{
    clear: both;
}



.loginDisplay
{
    font-size: 1.1em;
    display: block;
    text-align: right;
    padding: 10px;
    color: White;
}

.loginDisplay a:link
{
    color: white;
}

.loginDisplay a:visited
{
    color: white;
}

.loginDisplay a:hover
{
    color: white;
}

.failureNotification
{
    font-size: 1.2em;
    color: Red;
}

.bold
{
    font-weight: bold;
}

.submitButton
{
    text-align: right;
    padding-right: 10px;
}
.mandatory{
	color:#FC1618;
	font-weight:bolder;
	font-size:11px;
	padding-left: 3px; font-family:Verdana;
	
}

.nomandatory{
	color:#FC1618;
	font-weight:bolder;
	font-size:11px;
	padding-left:6px; width:8px; font-family:Verdana;
	
}
