* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans Bengali', sans-serif;
    background-color: #e9e6e6;
    padding-bottom: 90px;
}

a{
    text-decoration: none;
}

/* Text Colors */
.text-primary-custom {
    color: #237afd; /* blue */
}
.text-info-custom {
    color: #078f78; /* blue */
}
.text-success-custom {
    color: #198754; /* green */
}
.text-danger-custom {
    color: #dc3545; /* red */
}
.text-dark-info-custom {
    color: #012635; /* red */
}

/* Background Colors */
.bg-main-custom {
    background-color: #e9e6e6;
    color: rgb(0, 0, 0); /* optional, readable text */
}

.bg-primary-custom {
    background-color: #08487c;
    color: white; /* optional, readable text */
}

.bg-info-custom {
    background-color: #078f78;
    color: white; /* optional, readable text */
}
.bg-success-custom {
    background-color: #198754;
    color: white;
}
.bg-danger-custom {
    background-color: #dc3545;
    color: white;
}
.bg-warning-custom {
    background-color: #f76815;
    color: white;
}

/* Border Colors */
.border-info-custom {
    border: 1px solid #087c69;
}
.border-primary-custom {
    border: 1px solid #08487c;
}
.border-success-custom {
    border: 1px solid #198754;
}
.border-danger-custom {
    border: 1px solid #dc3545;
}


