.contentee-settings-wrap {
    max-width: 1200px;
    margin: 20px 0;
}

.contentee-header {
    background: linear-gradient(135deg, #FF867D 0%, #FFE97D 100%);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
    color: white;
}

.contentee-header h1 {
    color: white;
    font-size: 32px;
    margin: 0 0 10px 0;
}

.contentee-header .description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
}

.contentee-settings-container {
    display: grid;
    gap: 20px;
}

.contentee-card {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contentee-card h2 {
    margin-top: 0;
    font-size: 20px;
    color: #333;
    border-bottom: 2px solid #FF867D;
    padding-bottom: 10px;
}

.contentee-card .form-table th {
    width: 200px;
    font-weight: 600;
}

.contentee-card .form-table td input[type="text"],
.contentee-card .form-table td select {
    width: 100%;
    max-width: 500px;
}

/* Inline connection result */

.contentee-connection-result {
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.contentee-connection-icon {
    margin-right: 6px;
}

.contentee-connection-success {
    background-color: #d5f5e3;
    color: #1e7e34;
    border-left: 4px solid #00a32a;
}

.contentee-connection-error {
    background-color: #fce4e4;
    color: #8b1a1a;
    border-left: 4px solid #d63638;
}

.button-primary {
    background: linear-gradient(135deg, #FF867D 0%, #FFE97D 100%) !important;
    border: none !important;
    text-shadow: none !important;
    box-shadow: 0 2px 4px rgba(255, 134, 125, 0.3) !important;
}

.button-primary:hover {
    background: linear-gradient(135deg, #ff7669 0%, #ffd95c 100%) !important;
}

/* Network admin styles */

.contentee-network-sites-table {
    margin-top: 15px;
}

.contentee-network-sites-table .column-site-name {
    width: 20%;
}

.contentee-network-sites-table .column-site-url {
    width: 20%;
}

.contentee-network-sites-table .column-status {
    width: 12%;
}

.contentee-network-sites-table .column-api-key {
    width: 25%;
}

.contentee-network-sites-table .column-actions {
    width: 23%;
}

.contentee-network-sites-table .contentee-network-api-key {
    width: 100%;
}

.contentee-site-id {
    color: #999;
    font-size: 12px;
    margin-top: 2px;
}

.contentee-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.contentee-status-connected {
    background-color: #d5e8d4;
    color: #1e7e34;
}

.contentee-status-not-configured {
    background-color: #f0f0f0;
    color: #666;
}

.contentee-network-status {
    display: inline-block;
    margin-left: 8px;
    font-weight: 600;
    font-size: 13px;
}

.contentee-inline-success {
    color: #00a32a;
}

.contentee-inline-error {
    color: #d63638;
}

.contentee-network-sites-table .column-actions .button {
    margin-right: 4px;
}

/* Signup CTA card */

.contentee-signup-card {
    text-align: center;
    border: 2px dashed #FF867D;
    background: #fff9f8;
}

.contentee-signup-card h2 {
    border-bottom: none;
    text-align: center;
    font-size: 22px;
}

.contentee-signup-description {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 20px;
}

.contentee-signup-button {
    display: inline-block;
    background: linear-gradient(135deg, #FF867D 0%, #FFE97D 100%);
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(255, 134, 125, 0.35);
    transition: all 0.2s ease;
}

.contentee-signup-button:hover {
    background: linear-gradient(135deg, #ff7669 0%, #ffd95c 100%);
    box-shadow: 0 4px 12px rgba(255, 134, 125, 0.5);
    color: white;
    transform: translateY(-1px);
}

