/* Style pour le contenu WHMCS */
.whmcs-content {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.whmcs-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.whmcs-content h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #1d1d1f;
    padding-bottom: 15px;
    border-bottom: 2px solid #0071e3;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whmcs-item {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f5;
    transition: all 0.2s ease;
}

.whmcs-item:hover {
    background-color: #f9f9fc;
    border-radius: 8px;
    padding: 20px;
}

.whmcs-item:last-child {
    border-bottom: none;
}

.whmcs-item-title {
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 10px;
    font-size: 18px;
}

.whmcs-item-title a {
    color: #0066cc;
    text-decoration: none;
    transition: all 0.2s ease;
}

.whmcs-item-title a:hover {
    color: #0071e3;
    text-decoration: underline;
}

.whmcs-item p {
    color: #515154;
    margin-bottom: 10px;
    line-height: 1.6;
}

.whmcs-item-date {
    color: #86868b;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.whmcs-loading {
    color: #86868b;
    text-align: center;
    padding: 20px;
    font-style: italic;
}