body {
    background: #0b0b0c;
}

/* MAIN WRAPPER */
.ssc-wrapper {
    max-width: 850px;
    margin: 40px auto;
    padding: 25px;
    background: #111;
    border-radius: 16px;
    color: #fff;
    font-family: Inter, Arial;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* HEADER */
.ssc-header h2 {
    font-size: 28px;
    margin-bottom: 5px;
}

.ssc-header p {
    color: #888;
    margin-bottom: 20px;
}

/* INPUTS */
input, select, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    background: #18181b;
    border: 1px solid #2a2a2e;
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    transition: 0.2s;
}

input:focus, select:focus, textarea:focus {
    border-color: #1db954;
    outline: none;
}

/* GRID */
.ssc-grid {
    display: grid;
    gap: 15px;
}

/* CONTRIBUTOR CARD */
.ssc-card {
    background: #18181b;
    padding: 15px;
    border-radius: 14px;
    border: 1px solid #2a2a2e;
    transition: 0.2s;
}

.ssc-card:hover {
    border-color: #444;
}

/* CARD HEADER */
.card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: 600;
}

.card-header button {
    background: none;
    border: none;
    color: #ff4d4d;
    cursor: pointer;
    font-size: 16px;
}

/* ROW INPUTS */
.row {
    display: flex;
    gap: 10px;
}

.row input {
    width: 50%;
}

/* BUTTONS */
button {
    border: none;
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

/* ADD BUTTON */
.btn-add {
    width: 100%;
    background: #1db954;
    color: #fff;
    margin-top: 10px;
}

.btn-add:hover {
    background: #17a74a;
}

/* GENERATE */
.btn-generate {
    width: 100%;
    background: #007bff;
    color: #fff;
    margin-top: 10px;
}

.btn-generate:hover {
    background: #0062cc;
}

/* EXPORT BUTTONS */
.export-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.export-buttons button {
    flex: 1;
    background: #2a2a2e;
    color: #fff;
}

.export-buttons button:hover {
    background: #3a3a3f;
}

/* TOTALS */
.totals {
    margin-top: 15px;
    padding: 12px;
    background: #18181b;
    border-radius: 10px;
    border: 1px solid #2a2a2e;
    display: flex;
    justify-content: space-between;
}

/* OUTPUT */
textarea {
    height: 200px;
    margin-top: 15px;
    resize: none;
}

/* UPGRADE */
.upgrade {
    margin-top: 10px;
    text-align: center;
    color: orange;
}

/* MOBILE */
@media (max-width: 600px) {
    .row {
        flex-direction: column;
    }

    .totals {
        flex-direction: column;
        gap: 5px;
    }
}

.suggestions {
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    margin-top: -8px;
    margin-bottom: 10px;
}

.suggestion-item {
    padding: 8px;
    cursor: pointer;
}

.suggestion-item:hover {
    background: #222;
}