
.top-action-bar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap; 
}

.import-form {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-grow: 1;
    max-width: 700px;
}

/* File Upload Box Styling */
.file-import-wrapper {
    flex-grow: 1;
    position: relative;
    height: 40px; 
}

.file-upload-box {
    border: 1px solid #ced4da;
    border-radius: 6px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    background-color: #fff;
    cursor: pointer;
    position: relative;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    gap: 5px;
    min-height: 44px;

}

.file-upload-box span {
    color: #6c757d;
}

.file-upload-box svg{
  width: 18px;
  height: 18px;
  stroke: #000;
  stroke-width: 1.5;
  fill: none;
  /* stroke: #5d5b60; */
}

/* .download-btn button  svg{
  width: 18px;
  height: 18px;
  stroke: #0d6efd;
  stroke-width: 1.5;
  fill: none;
}

.download-btn .btn-inner{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-decoration: none;
}
.download-btn button:hover svg{
  stroke: #ffffff;
} */

.employee-portal-parent .import-form-container{
  display: flex;
  align-items: center;
  gap: 20px; 
  width: 100%;
}
.employee-portal-parent .import-form-container #importForm{
  display: flex;
  align-items: center;
  gap: 20px; 
  width: 100%;
}

@media (max-width: 768px) {
  .employee-portal-parent .import-form-container{ 
    flex-direction: column;
    align-items: self-start;
  }
  .file-import-wrapper{
    width: 100%;
  }
}

.file-import-wrapper-inner{
  display: flex;
  align-items: center;
  gap: 10px; 
}

.employee-portal-container{
    width: 100%;
}
.employee-portal-container .employee-name{
    width: 100%;
    font-size: 35px;
    line-height: 48px;
    font-weight: 700;
     color: var(--primary-color);
     margin-bottom: 32px;
}

.employee-portal-container .employee-portal-parent{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    justify-content: center;
}
.employee-portal-parent-inner{
    width: 100%;
}
.schedule-block{
   width: 100%;
   display: flex;
   align-items: center;
   gap: 10px;
   margin-bottom: 1rem;
}

.noRecord-block{
    width: 100%;
    min-height: 200px;
}

/* .btn{
  min-height: 44px;
} */

.file-upload-box input[type="file"] {
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
    left: 0;
    top: 0;
}

/* Download Link */
.download-link {
    color: #007bff;
    text-decoration: none;
    font-size: 1em;
    padding-bottom: 5px;
}


.main-buttons {
    margin-bottom: 20px;
}

.btn-import {
    background-color: #fff;
    color: #333;
    border: 1px solid #ced4da;
    padding: 10px 20px;
}

.btn-add {
    background-color: #28a745; 
    color: white;
}

.btn-schedule {
    background-color: #6c757d; 
    color: white;
}

.btn-edit {
    background-color: #007bff;
    color: white;
    font-size: 0.9em;
    padding: 5px 10px;
    margin-right: 5px;
}

.btn-delete {
    background-color: #dc3545; 
    color: white;
    font-size: 0.9em;
    padding: 5px 10px;
}

.btn:hover {
    opacity: 0.9;
}

.new-user-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;     /* space between text & link */
}


