/* style.css */
/* এই ফাইলটি ওয়েবসাইটের সাধারণ কাস্টম স্টাইলিং ধারণ করে। */

body {
    font-family: 'Inter', sans-serif; /* Inter ফন্ট ব্যবহার */
    background-color: #f8f9fa;
}

.navbar {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.container {
    margin-top: 20px;
}

.card {
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn {
    border-radius: 8px;
}
