/*!*****************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./templates/routes/user/parcheggi/parcheggi.css ***!
  \*****************************************************************************************************************************/
.parking-lot-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
    height: 100%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.parking-lot-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.parking-lot-card-inner {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.parking-lot-icon {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(26,115,232,0.3);
}

.parking-lot-name {
    font-weight: 700;
    color: #0f2456;
    margin-bottom: 0.5rem;
    font-size: 1.35rem;
}

.parking-lot-address {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.parking-lot-cta {
    margin-top: auto;
    padding-top: 1.5rem;
    color: #1a73e8;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.parking-lot-card:hover .parking-lot-cta {
    color: #0d47a1;
}

/* Parcheggio non ancora attivo — non selezionabile */
.parking-lot-card-soon {
    cursor: not-allowed;
    opacity: 0.75;
}

.parking-lot-card-soon:hover {
    transform: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.parking-lot-card-soon .parking-lot-icon {
    background: linear-gradient(135deg, #adb5bd 0%, #6c757d 100%);
    box-shadow: 0 4px 12px rgba(108,117,125,0.25);
}

.parking-lot-cta-soon {
    color: #6c757d;
}

.parking-lot-badge-soon {
    display: inline-flex;
    align-items: center;
    background: #fff3cd;
    color: #92400e;
    border: 1px solid #fde68a;
    border-radius: 999px;
    padding: 0.15rem 0.6rem;
    font-size: 0.72rem;
    font-weight: 600;
    white-space: nowrap;
    vertical-align: middle;
}

.parking-lot-subtitle {
    color: rgba(255,255,255,0.75);
    font-size: 1.15rem;
}

@media (max-width: 767.98px) {
    .parking-lot-subtitle {
        font-size: 0.85rem;
    }
}

/* ============================================================
   MOBILE ≤ 767.98px — tabella "Abbonamenti": niente scroll
   orizzontale, nascondi colonne non essenziali (stesso pattern
   usato per #subscriptions nella dashboard abbonamenti)
   ============================================================ */
@media (max-width: 767.98px) {
    #parking_subscriptions .table-responsive {
        overflow-x: hidden !important;
    }

    #parking_subscriptions thead th:nth-child(2),
    #parking_subscriptions thead th:nth-child(3),
    #parking_subscriptions thead th:nth-child(4),
    #parking_subscriptions tbody td:nth-child(2),
    #parking_subscriptions tbody td:nth-child(3),
    #parking_subscriptions tbody td:nth-child(4) {
        display: none !important;
    }

    #parking_subscriptions thead th.actions-th,
    #parking_subscriptions tbody td.actions-td {
        display: table-cell !important;
    }

    #parking_subscriptions .hover-actions .btn {
        width: 1.5rem !important;
        height: 1.5rem !important;
        min-width: 1.5rem !important;
        min-height: 1.5rem !important;
        font-size: 0.65rem !important;
    }
}

