/* Styles pour le conteneur principal */
.container {
    color: #ffffff;
}

.modal {
    color: black;
}

/* Styles pour le titre principal */
.services-title {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Styles pour la description */
.services-description {
    color: #e0e0e0;
}

/* Styles pour les cartes de service */
.service-card {
    background: rgba(40, 40, 40, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Styles pour les titres des cartes */
.card-service-title {
    color: #ffffff !important;
}

.service-features {
    margin-left: 9vw;
}

/* Styles pour le texte des services */
.service-text {
    color: #e0e0e0;
}

/* Styles pour les éléments de liste */
.service-list-item {
    color: #ffffff;
}

/* Styles pour les icônes */
.service-icon i {
    color: #dc3545;
}

/* Styles pour le bouton */
.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #ffffff;
}

.btn-danger:hover {
    background-color: #bb2d3b;
    border-color: #b02a37;
}

/* Styles pour le mode édition */
.edit-controls {
    margin: 20px 0;
    text-align: right;
}

.edit-section {
    background: rgba(40, 40, 40, 0.9);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.edit-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 15px;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.edit-controls-item {
    margin-top: 10px;
}

/* Styles pour les modals */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-dialog {
    margin: 10% auto;
    width: 80%;
    max-width: 600px;
}

.modal-content {
    background-color: #343a40;
    color: white;
    border-radius: 5px;
}

.modal-header {
    border-bottom: 1px solid #495057;
    padding: 15px;
}

.modal-body {
    padding: 20px;
}

.modal-footer {
    border-top: 1px solid #495057;
    padding: 15px;
}

.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    background: none;
    border: none;
}

.close:hover,
.close:focus {
    color: #dc3545;
    text-decoration: none;
    cursor: pointer;
}