/* WHMCS Integration Styles */

/* Form Styles */
.whmcs-client-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.whmcs-client-form .form-group {
    margin-bottom: 20px;
}

.whmcs-client-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.whmcs-client-form input[type="text"],
.whmcs-client-form input[type="email"],
.whmcs-client-form input[type="tel"],
.whmcs-client-form input[type="password"],
.whmcs-client-form select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.whmcs-client-form button {
    background-color: #0073aa;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.whmcs-client-form button:hover {
    background-color: #005177;
}

/* Client Dashboard Styles */
.whmcs-client-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.whmcs-client-dashboard h2 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.client-info,
.client-products,
.client-invoices {
    margin-bottom: 30px;
}

/* Table Styles */
.whmcs-client-dashboard table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.whmcs-client-dashboard th,
.whmcs-client-dashboard td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.whmcs-client-dashboard th {
    background-color: #f5f5f5;
    font-weight: bold;
}

/* Notice Styles */
.whmcs-notice {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.whmcs-notice-success {
    background-color: #dff0d8;
    border: 1px solid #d6e9c6;
    color: #3c763d;
}

.whmcs-notice-warning {
    background-color: #fcf8e3;
    border: 1px solid #faebcc;
    color: #8a6d3b;
}

.whmcs-notice-error {
    background-color: #f2dede;
    border: 1px solid #ebccd1;
    color: #a94442;
}

/* Client View Styles */
.whmcs-client-view-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.client-details {
    margin: 20px 0;
}

.detail-row {
    margin-bottom: 10px;
}

.detail-label {
    font-weight: bold;
    margin-right: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .whmcs-client-dashboard table,
    .whmcs-client-view-container table {
        display: block;
        overflow-x: auto;
    }
} 