.board {
    position: relative;
    display: flex;
    flex-direction: column;
    /* width: 290px; */
    word-wrap: break-word;
    background-color: #f7f7f7;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
    height: 100%;
    max-height: 82vh;
    color: var(--text-color);
    min-width: 19rem;
}

.board_cards {
    padding: 0.5rem 0.5rem;
    overflow-y: auto;
    min-width: 19rem;
}

.board_top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 0.5rem;
    margin-bottom: 0;
}

.board_top > div > p:hover {
    cursor: pointer;
}

.board_top > div > p {
    font-weight: bolder;
}
.total_cards {
    background-color: #f0f2f5; 
    color: #000000; 
    font-size: 0.8rem; 
    font-weight: 500; 
    padding: 0.4rem 0.7rem; 
    border-radius: 50%; 
    margin-left: 1rem; 
    display: inline-block;
    text-align: center;
    min-width: 35px; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
}
.title_input {
    font-weight: 400;
    height: 30px;
    border-radius: 5px;
}
.board_top > div {
    cursor: pointer;
}

.board_footer {
    display: flex;
    flex-direction: column;
}

.board_title {
    font-size: 1.1rem; 
    font-weight: bold; 
    text-transform: uppercase; 
    color: #333; 
    letter-spacing: 0.01rem; 
    margin-bottom: 0.5rem; 
    display: flex;
    align-items: center; 
    justify-content: space-between; 
    padding: 0.5rem 1rem; 
}







