.content{
    overflow-y: hidden;
}

.content-board{
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
}

.header-board{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 73px;
    max-width: 1056px;
    padding-bottom: 55px;
}

.header-board h1{
    font-size: 61px;
    font-weight: 700;
    padding-bottom: 0px;
}

.board-find-task{
    display: flex;
    width: 504px;
    gap: 32px;
    padding: 7px 3px 7px 3px;
}

#input-find-task {
    border: none;
    box-shadow: none;
    outline: none;
    padding-block: 0;
    padding-inline: 0;
    border: 1px solid #A8A8A8;
    border-radius: 10px;
    padding-left: 16px;
    font-size: 20px;
    height: 46px
}

.input-find {
    cursor: pointer;
    position: relative;
}

#input-find-task:focus{
    outline: 1px solid #29ABE2;
    outline-offset: -1px;
}

#input-find-task::placeholder {
    color: #D1D1D1;
}

#separator{
    width: 1px;
    height: 31px;
    background-color: #D1D1D1;
}

.input-find-icon{
    position: absolute;
    display: flex;
    justify-content: space-between;
    width: 48px;
    height: 32px;
    right: 16px;
    top: 24px;
    transform: translateY(-50%);
}

.input-find-icon svg:hover {
    background-color: #EEEEEE;
    border-radius: 50px;
    cursor: pointer;
}

.input-find-icon svg:active path{
    fill: #29ABE2;
}

.input-find-icon svg:active {
    background-color: transparent;
}

#bt-add-task {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    height: 48px;
    background-color: #2A3647;
    color: white;
    font-size: 21px;
    font-weight: 700;
    border-radius: 10px;
    gap: 12px;
    cursor: pointer;
}

#bt-add-task:hover{
    background-color: #29ABE2;
    box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.25);
}

.board{
    display: flex;
    justify-content: space-around;
    gap: 6px;
    height: 100%;
}

.board::-webkit-scrollbar {
    display: none;
}

.columns {
    display: flex;
    flex-direction: column;
    width: 252px;
}

.column-titles {
    display: flex;
    max-width: 244px;
    justify-content: space-between;
    color: #42526E;
    font-weight: 700;
    font-size: 20px;
    padding-bottom: 28px;
    padding: 0 13px;
    height: 30px;
}

.column-titles svg{
    cursor: pointer;
}

.column-titles svg:hover rect,
.column-titles svg:hover path{
    stroke: #29ABE2
}

#overlay-add-task {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    width:100%;
    height:100%;
    z-index: 1000;
}

#overlay-add-task h1 {
    padding-bottom: 30px;
}

.bg-overlay {
    background-color: white !important;
    border-radius: 30px;
    height: 700px !important;
    padding: 64px 74px 64px 74px !important;
    position: relative;
}

#selected-contacts{
    background-color: white !important;
}

#close-overlay {
    position: absolute;
    top: 32px;
    right: 32px;
    width: 32px;
    height: 32px;
}

#close-overlay:hover{
    background-color: #EEEEEE;
    border-radius: 50px;
    cursor: pointer;
}

.hidden {
    display: none !important;
}

body.no-scroll {
    overflow: hidden;
}

.columns-content {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: calc(100vh - 320px);
    scrollbar-width: thin;
    scrollbar-color: #A8A8A8 transparent;
    padding-right: 3px;
}

.card-rotation {
    transform: rotate(5deg);
    transition: transform 0.2s ease;
}

.highlight-column {
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px dashed #A8A8A8;
    border-radius: 24px;
    transition: background-color 0.3s ease;
}

.bg-error-message p {
    background-color: white !important;
}

.form-add-task {
    height: 535px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #A8A8A8 transparent;
}