﻿/* ========================================
   Edit Profile
======================================== */
.spHeading {
    font-size: 24px;
    font-weight: 700;
    color: #2249ae;
}

.spDesc {
    color: #4a5565
}

.cardHeading {
    font-size: 20px;
    color: #2249ae;
}

.kcardPadding {
    padding: 10px 20px 20px 20px;
}

.containerbg {
    background: #f2f7fe;
}

.cardBorderRadius {
    border-radius: 16px;
}

label.lblHeadingText {
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

.field-validation-error {
    display: block;
    font-size: 14px;
    font-family: Montserrat, sans-serif;
    color: #dc2626;
    margin-top: 5px;
}

.hrdivider {
    opacity: 0.2;
    border: 1px solid #a8aaaf;
    border-bottom: thin;
}
span.spPasswordGuideLine {
    display: block;
    font-size: 14px;
    padding: 4px;
}

.spFormDesc {
    display: block;
    font-size: 14px;
    color: #4a5565;
    padding: 10px;
}
/* Profile Image Image Zooming */
.preview-thumb:hover {
    position: relative;
    z-index: 10;
    transform: scale(1.4); /* Zoom factor */
    transition: transform 0.2s ease-in-out;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
}
/* Profile Image Image Zooming End */

/* Columns Button Style */
.k-toolbar-button.k-grid-column-menu {
    background-color: #2249ae !important;
}

    .k-toolbar-button.k-grid-column-menu:hover {
        background-color: #4771DF !important;
    }
/* ========================================
   Expandable Grid Column Text
======================================== */
.expandable-text-container {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
}

.expandable-content {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
    min-width: 0;
    display: block;
}

.expandable-text-container.expanded {
    display: block;
}

    .expandable-text-container.expanded .expandable-content {
        white-space: normal;
        overflow: visible;
        display: inline;
    }

.expand-btn {
    color: #2249ae;
    background: none;
    border: none;
    padding: 0;
    font-size: 0.9em;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    flex-shrink: 0;
}

.expandable-text-container.expanded .expand-btn {
    float: right;
    margin-left: 10px;
}

.expand-btn:hover {
    color: #4771DF;
}
/* Expandable Grid end here*/