.modal-content {
    border-radius: 15px;
}

.modal-header {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.modal-footer {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.modal-title {
    font-weight: bold;
}

.close {
    color: white;
}

.close:hover {
    color: #f8f9fa;
}


.card-organization {
    position: relative;
    overflow: hidden;
}

.image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.organization-image {
    width: 80%;
    height: 80%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.card-organization {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.card-organization:hover {
    text-decoration: none;
    color: inherit;
}

.image-container {
    width: 100%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.organization-image {
    width: 80%;
    height: 80%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.organization-name {
    width: 100%;
    height: 20%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.no-data {
    background-color: #f8f9fa;
    border: 1px dashed #dee2e6;
}


.appointment-calendar .card {
    transition: all 0.3s ease;
}

.appointment-calendar .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}

.appointment-calendar .btn {
    transition: all 0.3s ease;
}

.appointment-calendar .btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.appointment-calendar .card-header {
    border-bottom: none;
}

.appointment-calendar .btn-outline-primary {
    color: #007bff;
    border-color: #007bff;
}

.appointment-calendar .btn-outline-primary:hover:not(:disabled) {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.appointment-calendar .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}