/* General Styles */
body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
}

input {
    outline: none;
}

input:-webkit-autofill {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: #2A3647 !important;
}

/* Add Task Button */
.add-task-button {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 8px 16px;
    cursor: pointer;
    background-color: #2a3647;
    color: white;
    border: none;
    font-size: 21px;
    font-weight: 700;
    line-height: 120%;
    gap: 4px;
}

.add-task-button:hover {
    background-color: #29abe2;
    box-shadow: 0px 4px 4px 0px #00000040;
}

/* Search Bar */
.searchbar-board {
    display: flex;
    width: 312px;
    height: 48px;
    padding: 8px 16px;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    border: 1px solid #a8a8a8;
    background: #fff;
    font-size: 20px;
    color: #191919;
    background-image: url(../img/linewithsearch.svg);
    background-repeat: no-repeat;
    background-size: 48px;
    background-position: center;
    background-position-x: 95%;
}

/* Search Button Wrapper */
.searchbar-button-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 32px;
}

/* Grid Layout */
.grid {
    overflow: hidden;
}

.content-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr;
    gap: 0px 0px;
    grid-template-areas: ". .";
}

/* Contacts Container */
.contacts-container {
    background-color: white;
    height: 100%;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 10px 10px;
}

/* Button Wrapper */
.button-wrapper {
    display: flex;
    padding: 22.5px 52px;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px -3px 10px;
}

/* Add New Contact Button */
.add-new-contact {
    display: flex;
    padding: 12px 12px;
    width: 275px;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    border-radius: 10px;
    border: 1px solid #2a3647;
    background: #2a3647;
    color: white;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 120%;
    cursor: pointer;
}

/* Contact Name */
.name {
    display: flex;
    padding: 15px 24px;
    align-items: flex-start;
    gap: 35px;
    border-radius: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.name:hover {
    background-color: #2a3647;
    color: white;
}

.name-wrapper {
    display: flex;
    align-items: center;
    gap: 54px;
}

/* Contacts List */
.contacts {
    overflow: scroll;
    height: 100px;
    height: calc(100vh - 192px);
    padding: 0 24px;
    background-color: white;
}

/* Contact Letter */
.letters-initialsions-contact {
    display: flex;
    padding: 17px 40px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    font-size: 20px;
}

/* Initial Circle */
.initial-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background-color: #ff7a00;
    stroke-width: 2px;
    stroke: white;
    border-radius: 100px;
    color: white;
    font-size: 12px;
}

/* Email Styling */
.email {
    color: #007cee;
    font-size: 16px;
}

.edit-circle-style {
    margin-top: 8px;
    margin-right: 8px;
    cursor: pointer;
}

/* Contact Wrapper */
.contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

/* Content Right Wrapper */
.content-right-wrapper {
    margin: 32px 64px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Drag and Drop Global Wrapper */
.drag-drop-global-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
    flex-shrink: 0;
}

/* To-Do Card */
.to-do-card {
    display: flex;
    width: 100%;
    padding: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0px 0px 10px 3px rgba(0, 0, 0, 0.08);
    cursor: grab;
}

.to-do-card:active {
    cursor: grabbing;
}

/* To-Do Card Content */
.to-do-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
}

/* Badge */
.badge {
    display: flex;
    padding: 4px 16px;
    align-items: flex-start;
    gap: 10px;
    border-radius: 8px;
    background: #0038ff;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
}

/* Card Text Wrapper */
.card-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}

/* Subtask Wrapper */
.subtask-wrapper {
    width: 100%;
    display: flex;
    padding: 0px 8px 2px 0px;
    align-items: center;
    gap: 11px;
}

/* Progress Bar */
progress {
    height: 8px;
    color: #0038ff;
    border-radius: 25px;
    width: 100%;
}

::-webkit-progress-bar {
    background-color: lightgrey;
    border-radius: 16px;
}

::-webkit-progress-value {
    background-color: #4589ff;
    border-radius: 16px;
}

/* Subtask */
.subtask {
    gap: 4px;
    display: flex;
    color: #000;
    font-size: 12px;
    font-weight: 400;
    line-height: 120%;
}

.subtask:hover {
    background-color: #E5E5E5;
    border-radius: 8px;
}

/* Edit Profile Badge */
.edit-profile-badge {
    color: white;
    display: flex;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    border-radius: 45px;
    background-color: #ff7a00;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    border: 1px solid #fff;
}

/* Profile Badge */
.profile-badge {
    color: white;
    display: flex;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 45px;
    background-color: #ff7a00;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 120%;
    border: 1px solid #fff;
    margin-right: -25px;
}

/* Avatar Wrapper */
.avatar-wrapper {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Card Footer */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: end;
    align-self: stretch;
}

/* Card Headline */
.card-headline {
    color: #2a3647;
    font-size: 16px;
    font-weight: 700;
    line-height: 120%;
}

/* Card Description */
.card-description {
    color: #a8a8a8;
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
}

/* Add Icon */
.add-icon {
    cursor: pointer;
}

/* Column Styling */
#collumnStyling {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1 0 0;
    align-self: stretch;
    gap: 26px;
}

/* Column Header Wrapper */
.collumn-header-wrapper {
    display: flex;
    justify-content: space-between;
}

/* Content Container */
.content-container {
    display: flex;
    min-width: 252px;
    padding: 5px;
    margin: 5px;
    min-height: 800px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 10px;
    border: 1px solid #a8a8a8;
    background: #e7e7e7;
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.16);
}

.content-container:hover {
    border: 4px dashed #a8a8a8;
    outline: none;
}

/* Content Container Hover */
.content-container-hover {
    background: #a9a9a9;
}

/* Column Headline */
.collumn-headline {
    color: #42526e;
    font-size: 20px;
    font-weight: 700;
    line-height: 120%;
}

/* Initial Circle XL */
.initial-circle-xl {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    background-color: #ff7a00;
    stroke-width: 2px;
    stroke: white;
    border-radius: 100px;
    color: white;
    font-size: 47px;
}

/* General Settings */
* {
    box-sizing: border-box;
}

.d-none {
    display: none;
}

.pointer {
    cursor: pointer;
}

.d-flex {
    display: flex;
}

.d-column {
    flex-direction: column;
}

.height100 {
    height: 100vh;
}

/* Header and Text Styles */
.contacts-headline {
    font-size: 61px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    padding-bottom: 0;
}

.better-team {
    font-size: 27px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.full-name-selected {
    font-size: 47px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}

/* Wrappers for layout and spacing */
.contacts-header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.settings {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-wrapper {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.contact-info {
    display: flex;
    width: 207px;
    height: 74px;
    flex-direction: column;
    justify-content: center;
}

.email-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Divider Styles */
.divider {
    height: 1px;
    width: 100%;
    background-color: lightgray;
}

/* Pop-Up General Style */
.bg-pop-up {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.whole-pop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    height: 592px;
    width: 90%;
    max-width: 1212px;
    position: relative;
    animation: slideIn 0.5s ease-in-out;
}

.close {
    position: absolute;
    width: 32px;
    height: 32px;
    right: 5%;
    top: 10%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    cursor: pointer;
}

.close:hover {
    filter: brightness(0) saturate(100%) invert(52%) sepia(98%) saturate(407%) hue-rotate(155deg) brightness(93%) contrast(90%);
}

/* Blue Section Styles */
.blue-color {
    background-color: #2b3647;
    padding: 66px 48px 66px 48px;
    width: 467px;
    height: 100%;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.blue-color img {
    width: 55.6px;
    height: 66.4px;
    margin-bottom: 8px;
}

.blue-color h2 {
    font-size: 61px;
    font-weight: 700;
    line-height: 73.2px;
    color: white;
    margin: 0;
    margin-top: 8px;
    margin-bottom: 8px;
}

.blue-color h3 {
    font-size: 27px;
    font-weight: 400;
    line-height: 32.4px;
    color: white;
    margin: 0;
    margin-top: 8px;
    margin-bottom: 8px;
}

/* Form and Input Styles */
form {
    display: flex;
    flex-direction: column;
    top: 137px;
    margin-right: 32px;
    border: 8px solid white;
    background-clip: padding-box;
    padding-right: 40px;
    padding-left: 32px;
    padding-top: 24px;
}

.input-fields {
    height: 215px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.single-input {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #d1d1d1;
    border-radius: 10px;
    padding: 13px 21px 13px 21px;
    gap: 10px;
}

.single-input input {
    border: none;
    outline: none;
    height: 100%;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
}

.single-input img {
    height: 24px;
    width: 24px;
}

/* Buttons Styles */
.style-btn {
    position: relative;
    display: flex;
    width: 364px;
    height: 57px;
    gap: 24px;
    margin-top: 10%;
}

button img {
    height: 24px;
    width: 24px;
}

.cancel-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    border: 1px solid #2b3647;
    padding: 16px;
    border-radius: 10px;
    width: 126px;
    height: 56px;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    cursor: pointer;
}

.create-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 21px;
    font-weight: 700;
    line-height: 25.2px;
    color: white;
    width: 214px;
    background-color: #2b3647;
    padding: 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.save-edit-button {
    width: 16px;
}
