body {
    font-family: Arial;
    background: #0f172a;
    color: white;
    margin: 0;
}

.layout {
    display: flex;
}

/* CONTAINER */
.container {
    max-width: 500px;
    margin: auto;
    padding: 20px;
}

/* INPUT */
input, textarea, select, button {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    border-radius: 8px;
    border: none;
}

/* BUTTON */
button {
    background: #22c55e;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

/* LOADING */
#loading {
    display: none;
    margin-top: 10px;
}

/* THREAD */
.thread {
    background: #1e293b;
    padding: 10px;
    margin-top: 10px;
    border-radius: 8px;
}

/* IKLAN */
.ads {
    background: #111827;
    color: #9ca3af;
    text-align: center;
    padding: 10px;
}

.ads-top, .ads-bottom {
    width: 100%;
}

.ads-left, .ads-right {
    width: 120px;
}

/* MOBILE */
@media (max-width: 768px) {
    .ads-left, .ads-right {
        display: none;
    }
}