/* styles.css */
.container {
    max-width: 500px;
    margin: 30px auto;
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
.card1 {
    border-radius: 6px;
    background-color: #ffffff;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
    padding: 12px;
    margin-top: 8px;
}
.form-select, .form-label {
    font-size: 14px;
}
.card-title1 {
    color: #007bff;
    font-weight: bold;
    font-size: 16px;
}
.card1 p {
    margin: 4px 0;
    font-size: 14px;
}
.hidden {
    display: none;
}

/* Compact Layout */
#discussionInfo, #roleInfo {
    transition: all 0.2s ease-in-out;
}

h1 {
    text-align: center;
    font-weight: bold;
    color: white;
    font-size: 20px;
    margin-bottom: 15px;
}

.thbutton {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    width: 100%;
}
.thbutton:hover {
    background-color: #0056b3;
}

/* Improve spacing */
.form-label {
    margin-top: 10px;
}

/* Better visibility for selections */
select {
    cursor: pointer;
}
