.job-card img {
    object-fit: contain;
    object-position: center;
    padding: 0.25rem;
}

.bookmark-btn.saved {
    background-color: #054b7a;
    color: #fff;
    border-color: #fff;
}

.fea {
    color: #054b7a;
}

.fea.icon-ex-md {
    height: 24px;
    width: 24px;
    flex-shrink: 0 !important;
}

.fea.icon-ex-md {
    height: 24px;
    width: 24px;
    margin-top: 3px !important;
}

.bookmark-btn.saved i {
    color: #fff;
}

/* Video Recorder Styles */
.recorder-container {
    max-width: 100%;
    margin: 20px auto;
    background: white;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.video-wrapper {
    position: relative;
}

#videoElement {
    width: 100%;
    border-radius: 12px;
    background: black;
}

#timer {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 5px 10px;
    border-radius: 8px;
    font-weight: bold;
}

/* #countdownOverlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 60px;
    font-weight: bold;
    padding: 2rem;
    border-radius: 50%;
} */
#countdownOverlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 4rem;
    font-weight: bold;
    width: 120px;          /* Fixed width */
    height: 120px;         /* Same as width */
    display: flex;         /* Center text inside */
    align-items: center;
    justify-content: center;
    border-radius: 50%;    /* Makes it a circle */
    text-align: center;
}
.progress {
    height: 6px;
    background: #dcdcdc;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 5px;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: limegreen;
    transition: width 0.2s;
}

.recorder-controls {
    display: flex;
    /* justify-content: space-around; */
    margin-top: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.recorder-controls button {
    padding: 10px 18px;
    border: 2px solid transparent;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
}

.recorder-controls .btn-outline-success {
    /* background: white; */
    border-color: limegreen;
    color: limegreen;
}

.recorder-controls .btn-outline-danger {
    /* background: white; */
    border-color: red;
    color: red;
}

.recorder-controls .btn-outline-warning {
    /* background: white; */
    border-color: orange;
    color: orange;
}

.recorder-controls .btn-outline-secondary {
    /* background: white; */
    border-color: dodgerblue;
    color: dodgerblue;
}

.recorder-controls .btn-outline-primary {
    /* background: white; */
    /* border-color: grey;
    color: grey; */
}

.recorder-controls button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.hidden {
    display: none !important;
}

.border-radius-50p {
    border-radius: 50px;
}

.top-menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}