#suggestion-box {
    background-color: white;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 0 0 0.25rem 0.25rem;
}

.suggestion-item {
    cursor: pointer;
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    color: #495057;
    background-color: #fff;
    transition: all 0.2s;
}

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

.suggestion-item:hover,
.suggestion-item.active-suggestion {
    background-color: var(--light-primary-color, #e9ecef);
    /* Fallback if var not defined */
    color: var(--primary-color, #007bff);
    font-weight: 500;
}

.custm-tab {
    height: min-content;
    border: 0.9px solid lightgray;
    border-radius: 0.5rem;
    padding: 0.3rem 0.5rem;
    cursor: pointer;
    width: 107px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.activeTab {
    background-color: var(--light-primary-color);
    font-weight: 700;
}



.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0px;
    font-weight: 600;
    font-size: 17px;
    color: var(--primary-color);
}

.section-title .icon-box {
    width: 34px;
    height: 34px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-title .icon-box i {
    color: white;
    font-size: 16px;
}


@media (max-width:980px) {
    .container {
        padding: 14px
    }


}

@media (max-width:620px) {
    .tabsContainer {
        width: 100%
    }
}

.table,
.table td,
.table th {
    border: none !important;
}

.table tbody tr {
    border: none !important;
}

.table-responsive {
    border: none !important;
}

/* Vertical timeline connector for section icons */
.section-wrapper {
    position: relative;
}

.section-wrapper::before {
    content: "";
    position: absolute;
    left: 17px;
    /* PERFECT center of your 34px icon-box */
    top: 48px;
    /* starts just below the first icon */
    bottom: 0;
    /* connects all sections */
    width: 2px;
    background: #c4d1e8;
    /* your light blue line */
}



.section-title .icon-box {
    position: relative;
    z-index: 2;
}



/* Skills Bubble Styling */
.skill-bubble {
    background-color: white;
    color: #333;
    border: 1px solid #ced4da;
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 14px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
    margin-right: 8px;
    /* Spacing if gap-2 isn't supported by older bootstrap */
    margin-bottom: 8px;
}

.skill-bubble:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.skill-text {
    font-weight: 500;
    margin-right: 10px;
}

.delete-skill-icon {
    color: #dc3545;
    /* Bootstrap danger color */
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    line-height: 1;
    padding: 0 4px;
}

.delete-skill-icon:hover {
    color: #a71d2a;
    background-color: rgba(220, 53, 69, 0.1);
    border-radius: 50%;
}

.tabsDetailsContainer {
    /* padding: 20px; */
}

.table-active {
    background-color: var(--light-primary-color) !important;
}
/* 
tbody tr:hover {
    cursor: pointer;
} */

.tabsContainer {
    /* height: 50px; */
    /* border: 0.9px solid #d3d3d369; */
    border-radius: 0.5rem 0.5rem 0.5rem 0.5rem;
    /* width: 240px; */
    /* padding: 0.5rem; */
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.custm-tab {
    height: min-content;
    border: 0.9px solid lightgray;
    border-radius: 0.5rem;
    padding: 0.3rem 0.6rem;
    cursor: pointer;
    width: 107px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    /* margin: 10px; */
}

.activeTab {
    background-color: var(--light-primary-color);
    font-weight: 700;
    border-color: var(--primary-color);
}

.resume-view-section {
    display: flex;
    flex-direction: column;
    width: 50%;
    /* height: 90vh; */
    overflow-y: auto;
    /* border: 1px solid #ccc; */
    /* padding: 25px; */
}

.resume-details-section {
    display: flex;
    flex-direction: column;
    width: 60%;
}

.resume-section {
    display: flex;
    width: 100%;
    gap: 20px;
}

.tab-section {
    margin-top: 20px;
    width: 100%;
}

.delete-row-plain-icon {
    color: red;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.8em;
    /* Makes the X slightly larger */
    padding: 0 5px;
    /* Adds a bit of space around the X */
    display: inline-block;
    /* Helps with padding and clickable area */
}

.ghost {
    opacity: 0.4;
    /* background: var(--light-primary-color) !important; */
}

.drag-handle {
    cursor: grab;

}

.sort-th {
    padding: 5px;
}


/* For Chrome, Edge, Brave */
::-webkit-scrollbar {
  width: 6px;      /* scrollbar width */
  height: 6px;     /* horizontal scrollbar */
}

::-webkit-scrollbar-track {
  background: #f1f1f1; 
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}