.ghlcoma-card-settings {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px 0 rgba(30,34,90,0.07);
    max-width: 540px;
    margin: 32px auto 0 auto;
    padding: 36px 36px 28px 36px;
}

.ghlcoma-settings-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.ghlcoma-status-pill {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.08em;
    border-radius: 999px;
    padding: 7px 20px 7px 16px;
    background: var(--ghlcoma-status-bg, #f5f5f5);
    color: var(--ghlcoma-status-color, #222);
    box-shadow: 0 1px 4px 0 rgba(30,34,90,0.04);
}

.ghlcoma-disconnect-btn {
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 22px;
    font-size: 1em;
    font-weight: 600;
    margin-left: 18px;
    transition: background 0.18s;
}

.ghlcoma-disconnect-btn:hover {
    background: #c0392b;
}

.ghlcoma-settings-form label {
    font-weight: 600;
    font-size: 1.04em;
    margin-bottom: 6px;
    display: block;
}

.ghlcoma-settings-form input[type="text"] {
    width: 100%;
    padding: 10px 14px;
    border-radius: 7px;
    border: 1px solid #d1d5db;
    font-size: 1.04em;
    margin-bottom: 4px;
    background: #fafbfc;
    transition: border 0.18s;
}

.ghlcoma-settings-form input[type="text"]:focus {
    border: 1.5px solid #2563eb;
    background: #fff;
    outline: none;
}

.ghlcoma-settings-form .description {
    color: #888;
    font-size: 0.98em;
    margin-bottom: 18px;
}

.ghlcoma-settings-form .form-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 18px;
}

.ghlcoma-settings-form th {
    width: 140px;
    text-align: left;
    vertical-align: top;
    padding: 0 0 0 0;
}

.ghlcoma-settings-form td {
    padding: 0 0 0 0;
}

.ghlcoma-settings-form .submit {
    margin-top: 18px;
}

@media (max-width: 700px) {
    .ghlcoma-card-settings { 
        padding: 18px 8px 18px 8px; 
    }
    .ghlcoma-settings-header { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 12px; 
    }
} 