﻿.service-card {
    cursor: pointer;
    height: 190px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #dee2e6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: .20s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    padding: 25px;
}

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px rgba(0,0,0,.18);
        border-color: #0d6efd;
    }

    .service-card:active {
        transform: scale(.97);
    }

    .service-card.disabled {
        opacity: .40;
        cursor: not-allowed;
    }

.service-icon {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: #eaf3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.service-icon i {
    font-size: 42px;
    color: #0d6efd;
}

.service-title {
    font-size: 1.35rem;
    font-weight: 700;
    text-align: center;
}

.service-description {
    margin-top: 10px;
    color: #6c757d;
    font-size: .95rem;
    text-align: center;
}

.priority-card {
    height: 190px;
    border-radius: 18px;
    background: white;
    border: 2px solid #dee2e6;
    cursor: pointer;
    transition: .20s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.priority-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,.15);
}

.priority-card.selected {
    border: 3px solid #0d6efd;
    background: #eef5ff;
}

.priority-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #edf4ff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
}

.priority-icon i {
    font-size: 42px;
    color: #0d6efd;
}

.priority-title {
    font-size: 24px;
    font-weight: 700;
}

.priority-subtitle {
    margin-top: 8px;
    color: #6c757d;
}

.transition-screen {
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.printing-overlay {
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}