.resume-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f9f9f9;
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
}

.resume-name {
    flex-grow: 1;
    text-align: left;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}


/* Ensure buttons don't stretch to full width */
.icon-btn {
    width: 35px !important;  /* Small fixed width */
    height: 35px;  /* Square shape */
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: #e0e0e0; */
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 18px;
    margin-left: 5px;
}

/* Icon styles */
.icon-btn i {
    color: white;
}

/* Hover effect */
.icon-btn:hover {
    background: #d6d6d6;
}



