/* Container principal pour la face arrière */
.program-back-content {
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Date d'ajout */
.program-date {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
    color: #6b7280;
    font-size: 0.875rem;
}

/* Boutons d'action */
.program-action-buttons {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 100;
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid #e0e0e0;
    padding: 15px;
}

.program-action-buttons .btn {
    margin: 0 2px;
    flex: 1;
    text-align: center;
}

/* Styles pour les boutons spécifiques */
.program-view-button {
    background-color: #16a34a;
    color: white;
    border-color: #16a34a;
}

.program-view-button:hover {
    background-color: #15803d;
    border-color: #15803d;
}

.program-view-button:focus {
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05), 0 0 0 4px rgba(34, 197, 94, 0.3);
}

.program-application-button {
    background-color: #2563eb;
    color: white;
    border-color: #2563eb;
}

.program-application-button:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
}

.program-application-button:focus {
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05), 0 0 0 4px rgba(59, 130, 246, 0.3);
}

/* Header avec status */
.program-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.status-badge {
    margin-left: 8px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}
