@media (min-width: 992px) {
    .col-md-offset-3 {
        margin-left: 0%!important;
    }
}
.bg-primary,.bg-dark{
    background-color: var(--primary-color)!important;
    color:white!important
}
.card {
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* padding: 15px; */
    margin-bottom: 20px;
    background-color: #fff;
}
.card-header {
    background-color: #f5f5f5;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}
.card-body {
    padding: 15px;
}
.card-footer {
    background-color: #f5f5f5;
    padding: 10px 15px;
    border-top: 1px solid #ddd;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}
/* Outline Success Button */
.btn-outline-success {
    transition: all 0.3s ease-in-out;
    background-color: var(--primary-color);
    color: white;
    border:2px solid var(--primary-color);
}
.btn-outline-success:hover {
    color: var(--primary-color);
    border: 2px dashed var(--primary-color);
    background-color: transparent;
}

/* Dashed Outline */
.btn-outline-dashed {
    border-style: dashed;
}

/* Light Success Active State */
.btn-active-light-success:active, 
.btn-active-light-success:focus {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

/* Pulse Animation */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.5); }
    70% { box-shadow: 0 0 0 10px rgba(40, 167, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}
.pulse {
    animation: pulse 1.5s infinite;
}

#syllabus-table-front thead{
    background-color: var(--theme-color-1);
    color:white
}
.card-img-top {
    width: 100%;
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}
.input-group {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
}

.input-group .form-control {
    flex: 1;
    border: none;
    padding: 10px;
    font-size: 16px;
    outline: none;
}

.input-group-text {
    text-align: center;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #ccc;
    padding: 10px;
    min-width: 100px;
}
.select2{
    height: 46px!important;
}