/* Custom styles for the sidebar */
#sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    height: 100vh;
    width: 250px;
    padding-top: 1rem;
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.2);
    background: rgb(12,78,165);
    background: linear-gradient(90deg, rgba(12,78,165,1) 0%, rgba(32,108,192,1) 100%);
    /* overflow-y: auto; */
}
.gradient-color{
    background: rgb(12,78,165);
    background: linear-gradient(90deg, rgba(12,78,165,1) 0%, rgba(32,108,192,1) 100%);
}

.btn-warning{
    background: linear-gradient(90deg, rgba(12,78,165,1) 0%, rgba(32,108,192,1) 100%) !important;
    color: white !important;
    border: none !important;
}

#sidebar .nav-link {
    color: #FFF;
    /* Updated to secondary color #54575A */
}

#sidebar .nav-link.active {
    color: #fff !important;
    font-weight: bold;
    background: #7f7f7f;
}

#sidebar .nav-link:hover {
    color: #7f7f7f;
    /* Updated to primary gold */
}

/* Custom styles for the main content */
.main-content {
    margin-left: 250px;
    /* Ensure content doesn't overlap the sidebar */
    padding: 1rem;
    overflow-x: hidden;
    /* Hide horizontal overflow */
    background-color: #F0F0F0;
    /* Updated to secondary color #BADCE6 */
}

/* Custom styles for the header */
.navbar {
    box-shadow: 4px 0 10px rgba(0, 0, 0, 0.2);
    /* Increased Header shadow */
    background-color: #5C98B8;
    /* Updated to secondary color #5C98B8 */
}

/* Custom CSS for better spacing and alignment */
.form-inline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.form-inline .form-control {
    width: 100%;
    max-width: 300px;
    /* Adjust the max width as needed */
}

.form-inline .btn {
    margin-left: 10px;
    /* Space between input and button */
    background-color: #86A185;
    /* Updated to primary green */
    color: #fff;
    /* Ensure the text is readable */
}

.square {
    width: 200px;
    /* Make the squares bigger */
    height: 100px;
    /* Increase the height */
    border-radius: 10px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
    /* Remove left-right margin and center vertically */
    font-size: 1.2rem;
    /* Increase font size for better readability */
}

.green {
    background-color: #86A185;
}

.orange {
    background-color: #C39A59;
}

.red {
    background-color: #D9534F;
    /* Adjusted red to differentiate from orange */
}

.breadcrump-navbar {
    margin-left: 13rem !important;
}

.custom-btn-green {
    background: #86A185;
    color: #fff;
    border: 1px solid #86A185;
    padding: 3px 20px;
    border-radius: 20px;
    line-height: 1.4;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.custom-btn-red {
    background: #d70040;
    color: #fff;
    border: 1px solid #d70040;
    padding: 3px 20px;
    border-radius: 20px;
    line-height: 1.4;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

.custom-btn-green:hover {
    background: #769175;
    border-color: #769175;
}

.custom-btn-red:hover {
    background: #b6053a;
    border-color: #b6053a;
}
.table {
    width: 100% !important;
}

.table-elipsis {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.custom-scroll-table {
    overflow: scroll;
}
table.dataTable td{
    vertical-align: middle;
    /* width: 100%; */
}
.default-btn{
    background-color: #86A185 !important;
    border-color: #86A185 !important;
}
.status-filter-custom {
    margin-bottom: -38px;
    z-index: 99;
    position: relative;
}
div.dataTables_wrapper div.dataTables_filter input{
    height: 38px;
}
.pagination .active>.page-link, .pagination .page-link.active {
    background-color: #86A185;
    border-color: #86A185;
}
.page-link:focus{
    box-shadow: none !important;
}
.pagination .page-link:hover,
.pagination .page-link:focus,
.pagination .page-link{
    color: #86a185;
}
.pagination .active .page-link:focus,
.pagination .active .page-link:hover{
    color: #fff;
}
.scheduleInterview {
    margin-top: 25px;
}

.rescheduleInterview {
    margin-top: 25px;
}
.primary-form form .form-control {
    border: 1px solid #86a185;
    font-size: 16px;
    height: 44px;
    border-radius: 6px;
    padding: 10px 15px;
}
.primary-form form textarea.form-control {
    resize: none;
    height: auto;
}
.primary-form form .form-control:focus{
    box-shadow: none;
}
.primary-form form label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}
.primary-form form {
    padding: 40px 20px;
    background: #fff;
    border-radius: 20px;
    margin-top: 20px;
}

.dashboard-card{
    font-size: 15px;
    font-weight: 500;
}

.required::after {
    content: "*";
    color: red;
    margin-left: 5px; 
}

.table {
    width: 100% !important;
}

div#input-candiate_email_data{
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

#input-candiate_email_data p {
    margin-bottom: 0;
    border: 1px solid #86A185;
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 14px;
}
#input-candiate_email_data p span {
    font-size: 10px;
}
div#input-candiate_email {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
#input-candiate_email p {
    margin-bottom: 0;
    border: 1px solid #86A185;
    padding: 5px 10px;
    border-radius: 30px;
    font-size: 14px;
}
#input-candiate_email p span {
    font-size: 10px;
    color: #000 !important;
}
.preview-template .card-body {
    background: #86A185;
    color: #fff;
    padding: 20px;
    height: 400px;
    overflow-y: scroll;
}
.preview-template .card-body p {
    margin: 0;
    font-size: 14px;
    margin-bottom: 22px;
}
.preview-template .card-body h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

#spinner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 9999;
}

.fade-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 9998;
}




*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body{
	overflow-x: hidden;
}
body,h1,h2,h3,h4,h5,h6,p{
	margin: 0;
	padding: 0;
    font-family: "Alkatra", system-ui;
}
img{
	max-width: 100%;
}
header{
	background: #eee;
	padding: 25px 0;
	text-align: center;
}
.banner img{
	width: 100%;
}
.video-section{
	padding-bottom: 60px;
}

h1.channel-title, h2.channel-title  {
    font-size: 45px;
    margin-bottom: 50px;
    text-align: left;
}
h1.channel-title{
	margin-bottom: 10px;
}
.video-section h3{
	margin-bottom: 50px;
	font-family: "Open Sans", sans-serif;
}
.container{
	max-width: 1200px;
	padding: 0 15px;
	margin: 0 auto;
}
.row{
	display: flex;
	margin: 0 -15px;
	flex-wrap: wrap;
}
.col-4{
	width: 33.33%;
	padding: 0 15px;
	margin-bottom: 30px;
}
footer {
    background: #00008B;
    text-align: center;
    padding: 25px 0;
}
footer p {
    font-size: 14px;
    color: #fff;
    font-family: "Open Sans", sans-serif;
}
.view-more-btn {
    margin-top: 20px;
    text-align: right;
}
.btn {
    text-decoration: none;
    color: #fff;
    background: #000;
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #000;
    transition: .4s all;
    display: inline-block;
}
.btn:focus,
.btn:hover {
    background: transparent;
    color: #000;
    border-color: #000;
}
footer .container {
    display: flex;
    align-items: center;
	justify-content: center;
}

.social-links ul {
    display: flex;
    gap: 15px;
    list-style: none;
    justify-content: flex-end;
    margin-top: 10px;
}

.social-links h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
    font-family: "Open Sans", sans-serif;
}

section#marquee {
    padding: 15px;
    font-size: 20px;
}

section#marquee span {
    font-family: auto;
}
.social-media-section {
    background: #d5d5d5;
    padding: 40px;
    margin-top: -10px;
    margin-bottom: 50px;
}
.social-media-section .row{
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.col-6 {
    width: 50%;
    padding: 0 15px;
}
.social-media-section h6 {
    font-size: 20px;
    font-family: "Open Sans", sans-serif;
}
.social-links a{
    display: inline-block;
}
.social-links a img {
    max-width: 32px;
    cursor: pointer;
}
.subcribe-button{
    display: flex;
    align-items: center;
    gap: 0 15px;
}

@media(max-width: 991px){
	.col-4{
		width: 50%;
	}
}
@media(max-width: 767px){

	iframe {
        height: 150px;
        width: 100%;
    }
	.col-4 {
	    padding: 0 8px;
	    margin-bottom: 8px;
	}
	.video-section{
		padding-bottom: 40px;
	}
	
	h1.channel-title, h2.channel-title  {
	    font-size: 32px;
	    margin-bottom: 30px;
		text-align: center;
	}
	.video-section h3 {
        text-align: center;
        font-size: 12px;
        flex-wrap: wrap;
        gap: 15px 0;
        margin-bottom: 30px;
        justify-content: center;
    }
	h1.channel-title{
	    margin-bottom: 10px;
	}
	.view-more-btn {
	    text-align: center;
	}
	footer .container {
	    flex-direction: column-reverse;
	}
	.social-media-section h6 {
        text-align: center;
        width: 100%;
    }
    .col-6{
        width: 100%;
    }
    .social-media-section .row{
        flex-wrap: wrap;
    }
    .social-media-section {
        background: #d5d5d5;
        padding: 15px;
        margin-bottom: 40px;
    }
    .social-links ul {
        justify-content: center;
        flex-wrap: wrap;
    }
}
