.modal-title {
color:black;
}
.mediumlong {
max-width: 300px;
}
body {
    margin: 0;
    font-family: system-ui, sans-serif;
    background: #fafafa;
    color: #111;
}

/* ==== TOP BAR ==== */
.topbar {
    width: 100%;
    padding: 20px 32px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.profile-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 10px 20px;
    border-radius: 40px;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.06);
    font-size: 15px;
    font-weight: 500;
}

.no-deco-white, .no-deco-white:hover {
    color: white;        /* Or any specific color you want */
    text-decoration: none; /* Removes the underline */
}

.no-deco, .no-deco:hover {
    text-decoration: none;
    color: black;
}

/* ==== PAGE CONTAINER ==== */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 32px;
}

/* ==== MAIN PAGE HEADERS ==== */
.page-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 6px;
}

.page-sub {
    color: #666;
    margin-bottom: 32px;
}

/* ==== TRAINEE SECTION ==== */
.trainee-header {
    margin-top: 48px;
    margin-bottom: 16px;
}

.trainee-name {
    font-size: 28px;
    font-weight: 700;
}

.trainee-sub {
    color: #666;
    margin-top: 4px;
    margin-bottom: 16px;
}

/* ==== PIPELINE ==== */
.pipeline-wrapper {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
}

.pipeline-column {
    min-width: 300px;
    background: #fff;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    scroll-snap-align: start;
}

.pipeline-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

/* ==== CUSTOMER CARD ==== */
.customer-card {
    background: #fafafa;
    border-radius: 18px;
    padding: 18px;
    margin-bottom: 16px;
    border: 1px solid #eee;
    box-shadow: 0px 3px 12px rgba(0,0,0,0.05);
    transition: 0.2s;
    cursor: pointer;
}

.customer-card:hover {
    transform: translateY(-3px);
}

.customer-name {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 4px;
}

.customer-sub {
    font-size: 14px;
    color: #777;
}

.section-title {
    font-size: 30px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 8px;
}

/* ==== BUTTONS ==== */
.button-row {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.action-btn {
    padding: 12px 20px;
    background: #6C48C5;
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 15px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.action-btn-secondary {
    padding: 12px 20px;
    background: #ddd;
    color: #333;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 15px;
}

/* ==== PIPELINE ==== */
.pipeline-wrapper {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
}

.client-name {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 8px;
}

.client-meta {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
}

/* ===== TABS LAYOUT ===== */
.layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
}

/* ==== LEFT COLUMN (CONTENT TABS) ==== */
.tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.tab-btn {
    padding: 10px 18px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #ddd;
    cursor: pointer;
    font-size: 15px;
    color: #444;
}

.tab-btn.active {
    background: #6C48C5;
    color: #fff;
    border-color: #6C48C5;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #eee;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.06);
    margin-bottom: 16px;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-text {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* ===== TO-DO SECTION ===== */
.todo-section {
    margin-top: 24px;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #eee;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.06);
}

.todo-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.todo-sub {
    font-size: 14px;
    color: #6C48C5;
    margin-bottom: 8px;
}

.todo-item {
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #444;
}

.todo-item:last-child {
    border-bottom: none;
}

/* ===== RIGHT SIDEBAR ===== */
.sidebar {
    background: #fff;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid #eee;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.06);
}

.sidebar-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.sidebar-section {
    margin-bottom: 28px;
}

.sidebar-header {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
}

.sidebar-edit {
    font-size: 13px;
    color: #6C48C5;
    cursor: pointer;
}

.sidebar-text {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

/* Sidebar To-Do box */
.sidebar-todo-box {
    background: #fafafa;
    padding: 14px;
    border-radius: 14px;
    border: 1px solid #eee;
}


/* ===== BACK BUTTON ===== */
.back-btn {
    display: inline-block;
    padding: 10px 16px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: 0 3px 12px rgba(0,0,0,0.06);
    margin-bottom: 24px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    color: #111;
}

.form-container {
    width: 100%;
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.08);
}

/* ==== FORM ==== */
.input-label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.input-field {
    width: 100%;
    padding: 14px 18px;
    border-radius: 999px;
    border: 1px solid #ddd;
    background: #fafafa;
    font-size: 15px;
    margin-bottom: 18px;
    box-sizing: border-box;
}

textarea.input-field {
    border-radius: 16px;
    height: 120px;
    resize: none;
}
