﻿.crm-drop-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 1rem;
    flex-grow: 1;
}

.crm-container {
    flex: 1; 
    min-width: 280px; 
    display: flex;
    flex-direction: column;
}

.wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    flex-direction: row;
}

.dropzone-scroll {
    scroll-behavior: auto;
}

.crm-container {
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-radius: 12px;
    flex: 1;
    min-width: 220px;
}

.shadow-sm {
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    border-radius: 8px;
}



.crm-board {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    width: 100%;
    height: 100%;
}

.crm-section {
    min-width: 250px;
    margin: 0 0.5rem;
    border-radius: 8px;
}

.crm-section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .5rem;
}

.crm-section__title {
    font-weight: 700;
}

.crm-section__amount {
    color: var(--color-success);
}

.crm-section__dropzone {
    min-height: 300px;
}

.crm-add-section {
    background-color: #f4f6f8;
    padding: 1rem;
    min-width: 180px;
    border-radius: 8px;
}

.crm-add-section__btn {
    border: 1px solid var(--border-color-default);
    border-radius: 8px;
    width: 100%;
}

.crm-add-section__text {
    text-align: center;
    color: #5D6D7E;
    margin-top: .5rem;
}


.notes__container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.notes__input-card,
.notes__display-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--border-color-default);
}
.notes__input-card {
    background: var(--color-bg-primary);
}
.notes__textbox {
    border-radius: 12px;
    padding: 1rem;
    margin: 0 !important;
}

.notes__content {
    line-height: 1.6; 
    font-size : var(--font-md);
    font-weight : 500;
    color: var(--color-heading);
}




.crm-profile__card {
    border-radius: 28px;
    padding: 1rem;
    height:100%;
    border: 1px solid var(--border-color-default);
}

.crm-profile__tabs {
    background-color: var(--color-bg-secondary);
    border-radius: 31px;
    padding: 0.5rem;
}

.crm-profile__tab-button {
    border-radius: 50px;
    border : 0 !important;
    width: 100%;
    font-weight: 500;
}

.primary-text {
    font-weight: 500;
    font-size: 18px;
    color: #000;
}

.secodery-label {
    font-weight: 500;
    font-size: 16px;
    color: #000;
}
