body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

/* NAVBAR */
.navbar-brand {
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #ffc107 !important;
}

/* CARDS */
.card {
    border-radius: 12px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* BUTTONS */
.btn-success {
    transition: 0.3s;
}

.btn-success:hover {
    background-color: #145c32;
}

/* RESULT */
#result {
    border-left: 5px solid #198754;
    border-radius: 10px;
}

/* LIST */
.list-group-item {
    border-radius: 8px;
    margin-bottom: 8px;
    transition: 0.2s;
}

.list-group-item:hover {
    background-color: #f1fdf5;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    h2, h3 {
        font-size: 1.4rem;
    }
}