/* Main styles */

/* Primary color and hover effect overrides */
:root {
    --bs-primary: #134b99; /* Replace #123456 with your desired color */
    --bs-primary-hover: #134b99; /* A slightly darker shade for hover */
}

.sadc-color{
	color:var(--bs-primary) !important;
}

.bg-primary {
    background-color: var(--bs-primary) !important;
}
.text-primary {
    color: var(--bs-primary) !important;
}
.btn-primary {
    background-color: var(--bs-primary) !important;
    border-color: var(--bs-primary) !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--bs-primary-hover) !important;
    border-color: var(--bs-primary-hover) !important;
}
.navbar .nav-link,
a.nav-link {
    color: #fff !important;
    transition: color 0.2s, background 0.2s;
}
.navbar .nav-link:hover,
a.nav-link:hover {
    color: #c99900  !important; /* Example: gold on hover */
    background-color: rgba(18,52,86,0.1);
}
.bg-primary:hover,
.bg-primary:focus {
    background-color: var(--bs-primary-hover) !important;
}

body {
   /* padding-top: 20px;*/
    background-color: #f8f9fa;
}
.my-navbar {
    background-color: #1b2c43 !important; /* Replace with your color */
}
.bg-blue{
	background-color:#134B99;
}
.card {
    margin-bottom: 20px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* Form styles */
.form-group.required label:after {
    content: " *";
    color: red;
}

/* Table styles */
.table-responsive {
    margin: 20px 0;
}

/* Alert styles */
.alert {
    margin-top: 20px;
}

/* Footer styles */
footer {
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

/* Upload preview */
.upload-preview {
    width: 200px;
    height: auto;
    margin-bottom: 10px;
}

/* Sidebar styles */
.sidebar {
    position: fixed;
    top: 100px;
    bottom: 0;
    left: 0;
    z-index: 100;
    padding: 20px 0;
    overflow-x: hidden;
    overflow-y: auto;
    border-right: 1px solid #eee;
}

.sidebar .nav-link {
    font-weight: 500;
    color: #333;
}

.sidebar .nav-link.active {
    color: #134b99;
}

/* Main content area */
.main-content {
    margin-left: 220px;
    padding: 20px;
}

fieldset {
	border: 1px solid #134b99;
	border-radius: 8px;
	padding: 1.5rem 1.5rem 1rem 1.5rem;
	margin-bottom: 2rem;
	box-shadow: 0 2px 8px rgba(13,110,253,0.05);
}
legend {
	font-size: 1.2rem;
	font-weight: bold;
	color: #134b99;
	width: auto;
	padding: 0 10px;
}
.my-border{
	border-bottom:2px solid #c99900;
}
.bg_gold{
	background-color:  #c99900;
}
