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

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

/* Boutons d'action */
.application-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;
}

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

/* Styles pour les boutons spécifiques */
.application-pdf-button {
    background-color: #6b7280;
    color: white;
    border-color: #6b7280;
}

.application-pdf-button:hover {
    background-color: #4b5563;
    border-color: #4b5563;
}

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

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