.calendar-container {
    margin-top: 50px; /* Margin from the last line of buttons */
}

.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 70px); /* 7 columns matching the calendar grid */
    gap: 2px; /* Spacing between items */
    justify-content: start;
}

.weekdays div {
    width: 70px;
    text-align: center;
    color: rgb(218, 218, 218);
    font-size: 12px; /* Font size for weekdays */
    margin-bottom: 3px;
    font-family: 'Roboto', sans-serif;
}

.weekdays div:nth-child(6), .weekdays div:nth-child(7) {
    font-weight: lighter; /* Lighter font for weekend days */
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 70px); /* 7 columns */
    grid-template-rows: repeat(4, 70px); /* 4 rows */
    gap: 2px; /* Adjusted space between squares */
}

.calendar-day {
    width: 70px;
    height: 70px;
    background-color: #1E1E1E;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #BBBBBB;
    font-size: 20px; /* Font size for days */
    font-weight: bolder; /* Bold font for days */
    position: relative; /* For overlay positioning */
    cursor: pointer; /* Indicates the element is clickable */
}

.calendar-day:hover::after, .calendar-day.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.12); /* 10% white overlay */
}
.calendar-day span {
    display: inline-block;
    transition: color 0.3s ease; /* Smooth transition for color */
    color: #676767; /* Default color */
}

.calendar-day:hover span {
    color: white !important; /* Change text color to white on hover */
}

.calendar-day.active span {
    color: white !important; /* Keep text color white when active */
}

.calendar-day.scheduled {
    background-color: #3F5D48;
}

.calendar-day.scheduled span {
    color: white;
}

.container {
    width: 502px;
    height: 214px;
    background-color: #1E1E1E;
    margin-top: 45px;
}

.postButton {
    margin-top: 30px;
    background-color: #e9e9e9;
    color: #1a1a1a;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
}

.postButton:hover{
    background-color: #676767;
    color: rgb(255, 255, 255);
    transition: background-color 0.9s ease;
}

.postButton.active{
    background-color: #676767;
    color: rgb(255, 255, 255);
}

.button-wrapper {
    display: flex;
    justify-content: center;
}

.emoji {
    margin-right: 0px;
    cursor: pointer;
    border: none; /* Remove border */
    font-size: 20px;
    background: transparent; /* Ensure background is transparent */
}
#emojiContainer {
    padding-top: 15px; /* Add top margin to the emoji container */
    padding-left: 15px;
}

.styled-input {
    background-color: #313131;
    color: #7f7f7f;
    border: none;
    padding: 8px;
    margin-left: 15px;
    margin-top: 10px; /* Adjust as needed */
    transition: background-color 0.3s, color 0.3s;
    border-radius: 5px;
}

.styled-input:hover {
    background-color: #454545;
    color: white;
}

.styled-input:focus {
    background-color: #454545;
    color: white;
    outline: none; /* Removes the default focus outline */
}
.styled-input.active {
    color: white; /* Text color when active or contains text */
}

#dayInput {
    width: 100px;
}

#titleInput {
    width: 455px;
}

#linkInput {
    width: 200px;
    margin-left: 3px;
}

#tagInput {
    width: 108px;
    margin-left: 3px;
}
