/* custom.css */

/* ===== RESET / BASE ===== */
body {
    margin: 0;
    padding: 0;
}

/* ===== LAYOUT ===== */
.container-custom {
    max-width: 1200px;
    margin: auto;
}

/* ===== COMPONENT ===== */
.btn-primary-custom {
    background-color: #333;
    color: #fff;
    border-radius: 5px;
}

/* ===== UTILITY ===== */
.text-center {
    text-align: center;
}

.mt-10 {
    margin-top: 10px;
}

.red {
    color: red;
}