input{

    text-align: center;
}
body {
    font-family: Arial, sans-serif, Vrinda;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-size: 15px;
}

.availability-container {
    display: flex; /* Flexbox ব্যবহার */
    justify-content: space-between; /* সমান জায়গায় ফেলা */
    margin-top: 20px;
}

.availability-section {
    flex: 1; /* কলাম গুলোকে সমান প্রস্থ দেয় */
    margin-right: 20px; /* ডান কলামের জন্য মার্জিন */
}

.availability-section:last-child {
    margin-right: 0; /* শেষ কলামের মার্জিন সরিয়ে দেয়া */
}

h2 {
    color: #333;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    padding: 5px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.busy {
    font-family: 'Vrinda', monospace; /* Monospace font for even spacing */
    display: flex;
    justify-content: space-between;
	background-color: #ffcccc; /* ফ্রি ব্যক্তিদের জন্য সবুজ */
    font-size: 15px;
}

.task-name {
    margin-left: auto;
    text-align: right;
}


.free {
    background-color: #ccffcc; /* ফ্রি ব্যক্তিদের জন্য সবুজ */
    text-align: left;
    font-size: 15px;
}

