.custom-file-upload {
    margin: 20px 0;
    border: 2px dashed #d1d5db;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    background-color: #f9fafb;
}

.drop-zone {
    border: 2px dashed #ccc;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: 0.3s ease-in-out;
}

.drop-zone p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.drop-zone .browse-text {
    color: #4f46e5;
    font-weight: bold;
    cursor: pointer;
    text-decoration: underline;
}

.drop-zone.drag-over {
    background-color: #f3f4f6;
    border-color: #4f46e5;
}

.uploaded-file-preview {
    margin-top: 15px;
    position: relative;
    display: inline-block;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 5px 10px;
    background: #f9fafb;
}

.uploaded-file-preview .file-name {
    font-size: 14px;
    color: #4b5563;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.remove-file-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 0, 0, 0.8);
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    cursor: pointer;
    font-size: 14px;
}

.progress-bar-container {
    width: 100%;
    background-color: #e5e7eb;
    border-radius: 8px;
    margin-top: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 20px;
    background-color: #4f46e5;
    width: 0%;
    transition: width 0.3s ease;
    text-align: center;
    color: white;
    line-height: 20px;
    font-size: 12px;
}

.file-error-message {
    color: #dc2626;
    font-size: 14px;
    margin-top: 10px;
}

.single_add_to_cart_button:disabled {
    background-color: #d1d5db;
    cursor: not-allowed;
}


/* sidebar styling 3-15-25 */
.clinic-schedule-cont {
    display: flex;
    flex-direction: column;
    align-items: center;

    border: 1px solid #aaaaaa;
}

.clinic-day {
    text-align: center;
    width: 100%;

    font-size: 15px;
}

.clinic-schedule-cont h3 {
    width: 100%;
    text-align: center;
    padding: 12px 24px;

    font-size: 20px;
    line-height: 20px;
    border: 1px solid #3c99a1;
    background-color: #48a5ad;
    font-family: "Raleway", sans-serif !important;
    color: #ffffff;
}

.clinic-offer-image img {
    margin-bottom: 0px !important;
}

.clinic-offer-image img {
    transition: opacity 0.3s ease-in-out;
}

.clinic-offer-image:hover img {
    opacity: 0.6;
}



.clinic-schedule-container {
    max-width: 270px !important;
}

.clinic-schedule-cont-inner .clinic-day:last-child hr {
    display: none;
}

.clinic-schedule-cont-inner .clinic-day:last-child {
    margin-bottom: 20px;
}