/* Closures Page Styles */
.closures-page {
    width: 100%;
    min-height: 100vh;
    background-color: #fff;
}

.closures-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
}

.closures-header {
    margin-bottom: 32px;
}

.closures-header h1 {
    color: #133156;
    font-size: clamp(2rem, 1.5rem + 2.5vw, 40px);
    padding: 0;
    margin-bottom: 8px;
    font-weight: 800;
}

.closures-description {
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    color: #425466;
    margin: 0;
}

.closures-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 16px;
}

.closure-item {
    min-width: 500px;
    padding: 22px 20px;
    border-radius: 12px;
    background-color: #fff;
    border: 1px solid #E4E9ED;
}

.closure-item h2 {
    margin: 0;
    font-size: 24px;
    padding: 0;
    color: #133156;
    font-weight: 700;
}

.closure-address {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #425466;
    line-height: 1.5;
}

/* Closure Alert Message */
.closure-alert-message {
    background-color: #FEEBEB;
    color: #D10003;
    border-radius: 10px;
    padding: 12px 20px;
    
}

.closure-alert-message p {
    margin: 0;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 1.5;
}

/* Branch Status Indicators - Reused from archive-branch */
.branch-status-compact {
    display: flex;
    flex-direction: column;    
    margin-bottom: 8px;
}

.status-indicators {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    line-height: 1.7;
    gap: 4px 16px;
}

.lobby-status,
.drive-thru-status,
.atm-status {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.lobby-status.open::before,
.drive-thru-status.open::before,
.atm-status.open::before {
    display: block;
    content: '';
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #238B00;
    border: 2px solid #EBFEED;
    margin-right: 8px;
    flex-shrink: 0;
}

.lobby-status.closed::before,
.drive-thru-status.closed::before,
.atm-status.closed::before {
    display: block;
    content: '';
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: #D10003;
    border: 2px solid #FCE4E4;
    margin-right: 8px;
    flex-shrink: 0;
}

/* Branch Action Buttons - Reused from archive-branch */
.branch-actions {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-block;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    text-align: center;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.view-details-btn {
    color: #005a87;
    padding: 8px 16px;
}

.view-details-btn:hover {
    color: #005079;
    text-decoration: underline;
}

.call-btn {
    background-color: #ffffff;
    color: #005A8B;
    border: 1px solid #006dd23b;
}

.call-btn:hover {
    background-color: #eef9ff;
}

.directions-btn {
    background-color: #ffffff;
    color: #005A8B;
    border: 1px solid #006dd23b;
}

.directions-btn:hover {
    background-color: #eef9ff;
}

/* No Closures Message */
.no-closures {
    text-align: center;
    padding: 60px 20px;
    color: #425466;
}

.no-closures p {
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .closures-container {
        padding: 24px 16px;
    }

    .closures-header {
        margin-bottom: 24px;
    }

    .closures-header h1 {
        font-size: 28px;
    }

    .closures-list {
        grid-template-columns: 1fr;
    }

    .closure-item {
        min-width: 0;
        padding: 16px;
    }

    .closure-item h2 {
        font-size: 20px;
    }

    .branch-actions {
        flex-direction: column;
    }

    .action-btn {
        width: 100%;
        padding: 12px 16px;
    }
}

