/* ============================================================
   TIPO DE ATENCION
============================================================ */

.appointment-type-form {
    height: 100%;
}

.appointment-type-card {
    background: #ffffff;
    border: 0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
    padding: 0;
    text-align: left;
    transition: box-shadow .15s ease, transform .15s ease;
    width: 100%;
}

.appointment-type-card:hover {
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}

.appointment-type-image {
    background: #ffffff;
    display: block;
    height: 150px;
    object-fit: contain;
    padding: 14px;
    width: 100%;
}

.appointment-type-body {
    border-top: 1px solid #eef1f3;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 124px;
    padding: 18px 20px 20px;
}
