/* Cartes de tarification */
.pricing-container {
    max-width: 1000px;
    margin: 4rem auto;
    text-align: center;
}

.pricing-title {
    font-size: 2.5rem;
    color: #4DA6D6;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.pricing-grid {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
}

.pricing-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.pricing-plan {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-price {
    font-size: 2rem;
    color: #4DA6D6;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

/* Cartes Admin */
.card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    width: 350px;
    text-align: left;
    margin: 15px;
    border: 4px solid transparent;
    transition: border-color 0.3s ease;
    position: relative;
}

.card h3 {
    color: #3498db;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.card p {
    font-size: 14px;
    margin: 5px 0;
    color: #555;
}

.card strong {
    color: #333;
}

.card hr {
    margin: 15px 0;
    border: none;
    border-top: 1px solid #eee;
}

/* Statuts des cartes */
.status-new {
    border-color: red;
}

.status-inprogress {
    border-color: yellow;
}

.status-done {
    border-color: green;
}

.status-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.status-select {
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1.2rem;
}

.status-icon {
    cursor: pointer;
    font-size: 18px;
    margin-left: 10px;
}

.status-dropdown {
    display: none;
    position: absolute;
    right: 10px;
    top: 10px;
    background: white;
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 5px;
    z-index: 10;
}

.card:hover .status-dropdown {
    display: block;
}

/* Liste de planning */
.planning-list {
    list-style-type: none;
    padding-left: 0;
}

.planning-list li {
    background: #ecf0f1;
    padding: 5px;
    border-radius: 5px;
    margin-top: 5px;
    font-size: 12px;
}