/* public/assets/css/ghana-style.css */

/* 1. TYPOGRAPHY - Making it modern and readable */
body, h1, h2, h3, h4, h5, h6, p, span, div {
    font-family: 'Poppins', sans-serif !important;
}

/* 2. BUTTONS - Rounded and Tactile */
/* Targets standard buttons to make them look more friendly */
button, .btn, .submit-btn {
    border-radius: 12px !important; /* Softer corners */
    text-transform: capitalize !important; /* "Submit" instead of "SUBMIT" looks friendlier */
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle depth */
    transition: transform 0.2s ease;
}

button:active {
    transform: scale(0.98); /* Press effect */
}

/* 3. INPUT FIELDS - Thumb-friendly for Mobile Users */
input, select, textarea {
    padding: 12px 15px !important;
    border-radius: 8px !important;
    border: 1px solid #e0e0e0;
    background-color: #f9f9f9;
}

input:focus {
    background-color: #fff;
    border-color: var(--top_nav) !important; /* Uses your brand color */
    box-shadow: 0 0 0 3px rgba(0,0,0,0.05) !important;
}

/* 4. CARDS & CONTAINERS - Clean separation */
.card, .box, .bg-white {
    border-radius: 16px !important;
    border: none !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important; /* Soft premium shadow */
}

/* 5. ALERTS & NOTIFICATIONS */
/* Make success messages pop */
.alert-success, .toast-success {
    border-left: 5px solid #28a745;
    background-color: #f0fff4;
}