body { font-family: Arial; background: #fdf2f2; display: flex; flex-direction: column; align-items: center; }
.box { background: white; padding: 30px; margin-top: 50px; border-radius: 8px; box-shadow: 0 0 10px #ddd; width: 320px; }
input, select, button { width: 100%; padding: 10px; margin: 10px 0; border: 1px solid #ccc; border-radius: 5px; }
button { background: #d32f2f; color: white; font-weight: bold; border: none; cursor: pointer; }
.header { background: #d32f2f; color: white; width: 100%; padding: 15px; display: flex; justify-content: space-around; }
.header a { color: white; text-decoration: none; font-weight: bold; }
table { width: 80%; border-collapse: collapse; margin-top: 20px; background: white; }
th, td { border: 1px solid #ddd; padding: 10px; text-align: left; }
th { background: #d32f2f; color: white; }




.header {
    background-color: #E62E2D; /* ছবির মতো লাল রঙ */
    display: flex;
    justify-content: space-between; /* লোগো, মেনু এবং এসএমএস সেকশনকে আলাদা করবে */
    align-items: center;
    padding: 10px 50px;
    color: white;
}

.logo h2 {
    margin: 0;
}

.nav {
    display: flex;
    gap: 25px; /* এটি প্রতিটি লিঙ্কের মাঝে ২৫ পিক্সেল স্পেস তৈরি করবে */
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: 0.3s;
}

.nav a:hover {
    color: #ffcccc; /* হোভার করলে হালকা রঙ হবে */
}

.sms-info {
    font-size: 14px;
}