body {
    font-family: 'Kanit', 'Sarabun', sans-serif;
    background-color: #f7f9fb;
}

:root {
    --pastel-main: #FFB8C6;
    --pastel-dark: #FF9AB0;
    --pastel-gray: #f2f3f5;
}

.navbar-custom {
    background: var(--pastel-main);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.navbar-custom .nav-link {
    color: #ffffff !important;
    font-weight: 500;
}

.navbar-custom .navbar-brand {
    color: #ffffff !important;
}

/* Cards */
.card-pastel {
    border-radius: 16px;
    background: #ffffff;
    padding: 20px;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: .2s;
}

.card-pastel:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

.pastel-blue { background-color: #DFF3FF !important; }
.pastel-pink { background-color: #FFE5F0 !important; }
.pastel-green { background-color: #E6FFE6 !important; }
.pastel-yellow { background-color: #FFF7D6 !important; }

.btn-pastel {
    background: #ffc7d6;
    border: none;
    padding: 10px 18px;
    border-radius: 12px;
    font-weight: 500;
    transition: .2s;
}

.btn-pastel:hover {
    background: #ffafc4;
    transform: scale(1.03);
}

.footer-custom {
    background: var(--pastel-gray);
    border-top: 1px solid #e0e0e0;
}

/* Simple modal override for soft corners */
.modal-content {
    border-radius: 18px !important;
}
