body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f4f8;
    margin: 0; 
    padding: 0;
}

.container {
    width: 100%; 
    max-width: 600px;
    background-color: white;
    min-height: 100vh;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin: 0 auto;
}

.content { 
    padding: 20px; 
}

.form-group { 
    margin-bottom: 15px; 
}

label { 
    display: block; 
    font-weight: bold; 
    margin-bottom: 5px; 
    color: #333; 
}

input, select, textarea {
    width: 100%; 
    padding: 10px;
    border: 1px solid #ccc; 
    border-radius: 5px;
    font-size: 16px; 
    box-sizing: border-box;
}

textarea { 
    resize: vertical; 
    min-height: 80px; 
}

.section-title {
    background-color: #e9ecef; 
    padding: 10px;
    margin: 20px 0 10px 0; 
    font-weight: bold;
    border-left: 4px solid #0056b3; 
    color: #0056b3;
}

button {
    width: 100%; 
    background-color: #28a745; 
    color: white;
    padding: 15px; 
    border: none; 
    border-radius: 5px;
    font-size: 18px; 
    font-weight: bold; 
    cursor: pointer;
    margin-top: 10px;
}

button:active { 
    background-color: #218838; 
}

.note-card {
    background: #fff9e6; 
    padding: 15px;
    border: 1px solid #ffdf7e; 
    border-radius: 8px;
    margin-top: 20px;
}

.note-card h3 { 
    color: #b30000; 
    margin-top: 0; 
    border-bottom: 1px solid #ccc; 
    padding-bottom: 5px; 
}

.note-item { 
    margin-bottom: 10px; 
}

.note-item strong { 
    color: #0056b3; 
}

/* ଟପ୍ ହେଡର୍ ଡିଜାଇନ୍ */
.top-navbar {
    background-color: #0044cc;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    box-sizing: border-box;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    font-size: 35px;
}

.site-title h1 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}

/* ଡେସ୍କଟପ୍ (କମ୍ପ୍ୟୁଟର) ସ୍କିନ୍ ପାଇଁ ସ୍ବତନ୍ତ୍ର ଡିଜାଇନ୍ */
@media (min-width: 768px) {
    .container {
        max-width: 900px !important;
    }
    .desktop-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px;
    }
    .desktop-row .input-box {
        width: 32%;
        margin-bottom: 0;
    }
}

/* ମୋବାଇଲ୍ ସ୍କିନ୍ ପାଇଁ ସ୍ୱତନ୍ତ୍ର ସେଟିଂ */
@media (max-width: 768px) {
    body {
        display: block !important;
    }
    .container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        box-shadow: none !important;
    }
    .top-navbar {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        padding: 15px 10px !important;
        box-sizing: border-box !important;
    }
    .logo-section {
        display: block !important;
        text-align: center !important;
        margin-bottom: 15px !important;
    }
    .menu-section ul {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 15px !important;
        padding: 0 !important;
        list-style: none !important;
    }
}
/* ୨ୟ ପର୍ଯ୍ୟାୟ: ସର୍ଚ୍ଚ ଫର୍ମକୁ ଆକର୍ଷଣୀୟ କରିବା */
.content {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    margin-top: 15px;
}

.form-group input, .form-group select {
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    padding: 12px;
    transition: all 0.3s ease;
    background-color: #fafbfc;
}

.form-group input:focus, .form-group select:focus {
    border-color: #0044cc;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(0, 68, 204, 0.1);
    outline: none;
}

button {
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}
/* ମୋବାଇଲ୍ ପାଇଁ ଲେଖା ଆକାର ବୃଦ୍ଧି */
@media (max-width: 768px) {
    body {
        font-size: 16px !important;
    }
    input, select, textarea, button {
        font-size: 16px !important;
    }
    label {
        font-size: 15px !important;
    }
}
