/* Striped table rows for company list */
.table-striped > tbody > tr.striped-row {
    background-color: #f9f9f9;
}

/* Pagination styles */
.pagination {
    margin-top: 20px;
}
.pagination .page-item.active .page-link {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}
.pagination .page-link {
    color: #007bff;
    border: 1px solid #dee2e6;
    margin: 0 2px;
    padding: 6px 12px;
    border-radius: 4px;
    transition: background-color 0.2s;
}
.pagination .page-link:hover {
    background-color: #e9ecef;
    color: #0056b3;
}
body {
    background-image: url('background1.jpg'); /* Add your own background image URL here */
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    color: #333; /* Normal text color */
}
.form-control {
    border-radius: 20px;
    margin-bottom: 10px;
    padding-right: 35px; /* Add padding for the eye icon */
}
.btn-social {
    width: 100%;
    background-color: #fff; /* White background */
    border: 1px solid #ccc; /* #CCC border */
    font-size: 18px;
    color: #333; /* Normal text color */
    margin-bottom: 10px;
}
.btn-social img {
    vertical-align: middle;
}
.eye-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background-color: #FFF;
    border: none;
}

.btn-submit {
    width: 100%;
    background-color: red;
    border: 1px solid #ccc; /* #CCC border */
    font-size: 18px;
    color: #FFF; /* Normal text color */
    margin-bottom: 10px;
}

.not_registered {
    font-size: small;
    color: #CCC;
}

.not_registered a:hover {
    font-size: small;
    text-decoration: none;
    color: #BBB;
}

.navbar {
    background-color: #343a40; /* Navy blue navbar */
}

.navbar-brand {
    color: #ffffff; /* White text for brand */
}

.card {
    border: none; /* Remove border from cards */
}

.card-header {
    background-color: #007bff; /* Sky blue card header */
    color: #ffffff; /* White text for card header */
}

.card-body {
    background-color: #ffffff; /* White card body */
}

footer {
    background-color: #343a40; /* Navy blue footer */
    color: #ffffff; /* White text for footer */
    text-align: center;
    padding: 1em;
    position: fixed;
    width: 100%;
    bottom: 0;
}

.table tbody tr td:last-child {
    white-space: nowrap;
}
.table tbody tr.amber td {
    background-color: #ffcc00; /* Amber color for tasks due within 1 day */
}
.table tbody tr.red td {
    background-color: #ff6f61; /* Red color for overdue tasks */
}

.task-details-canvas {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.task-details-content {
    background-color: #fefefe;
    padding: 20px;
    border-radius: 5px;
    width: 50%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.close-canvas {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-canvas:hover,
.close-canvas:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.table tbody tr:hover {
    background-color: #f5f5f5;
     cursor: pointer;
}

.dashboard-box {
    /* height: 200px; */
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    border: 1px solid #ddd; /* Light border */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Light shadow */
}

.dashboard-box i {
    font-size: 3em;
    margin-bottom: 20px;
}

.dashboard-box:hover {
    transform: scale(1.05);
}


/* Add more styles as needed */
main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
}
.side-panel {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 250px;
    background-color: #343a40;
    color: #ffffff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.side-panel a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}
.side-panel a:hover {
    opacity: 0.7;
}
.sticky-icons {
    display: flex;
    justify-content: center;
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    gap: 15px;
}
.sticky-icons a {
    color: #ffffff;
    text-decoration: none;
    font-size: 24px;
    transition: 0.3s;
}
.sticky-icons a:hover {
    opacity: 0.7;
}

.task-details-canvas {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.task-details-content {
    background-color: #fefefe;
    padding: 20px;
    border-radius: 5px;
    width: 50%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.close-canvas {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-canvas:hover,
.close-canvas:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.table tbody tr:hover {
background-color: #fff;
cursor: pointer;
}

.table .card:hover {
background-color: lightskyblue;
}

.table :checked {

}

.overdue-task {
background-color: #FFD2D2 !important; /* Light red background for overdue tasks */
border: solid 1px red;
}

.priority-flag {
font-size: 1.2em;
}

.high {
color: red;
}

.medium {
color: orange;
}

.low {
color: green;
}

.card-body .dropdown {
float: right;
display: inline-block;
margin-top: -40px;
}

/* .card {
height: 75px;
padding-bottom: 0px;
cursor: pointer;
} */

.card:hover {
background-color: lightgray;
}

.card-body  {

display: inline-block;
}

.normal {
color: #000;
}

.navbar-form {
margin-right: 0;
}

.user-avatar-dropdown {
position: relative;
}

.avatar {
width: 50px;
height: 50px;
background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
color: #fff;
border-radius: 50%;
text-align: center;
font-size: 18px;
line-height: 50px;
cursor: pointer;
font-weight: 600;
box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
transition: all 0.3s ease;
border: 3px solid white;
}

.avatar:hover {
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(220, 53, 69, 0.4);
}

.dropdown-menu {
position: absolute;
top: 60px; /* Adjust as needed */
right: 0;
z-index: 1000;
display: none;
}

.show-dropdown .dropdown-menu {
display: block;
}

#taskCanvas {
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: 300px; /* Set the width of your off-canvas form */
    background-color: #ffffff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
}


.task-details {
    padding: 20px;
}

.close-canvas {
    cursor: pointer;
    font-size: 24px;
    margin-bottom: 20px;
}

.task-details label {
    font-weight: bold;
}

.task-details input, .task-details select, .task-details textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 5px;
}

.task-details-btn {
    width: 100%;
    margin-top: 10px;
}

.dropdown-card {
    display: none;
    width: 280px;
    min-height: auto;
    background-color: #fff;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: absolute;
    right: 0;
    top: 65px;
    z-index: 1000;
    overflow: hidden;
  }
  
  .dropdown-card.show {
    display: block;
    animation: slideDown 0.3s ease;
  }
  
  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .dropdown-card .card-header {
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-bottom: none;
    color: white;
  }
  
  .dropdown-card .card-header .dropdown-item-text {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.25rem;
  }
  
  .dropdown-card .card-header small {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
  }
  
  .dropdown-card .card-body {
    padding: 0.5rem 0;
  }
  
  .dropdown-card .card-item {
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #2d3748;
    text-decoration: none;
    display: block;
    border-left: 3px solid transparent;
  }
  
  .dropdown-card .card-item:hover {
    background-color: #f8f9fa;
    border-left-color: #dc3545;
    padding-left: 1.75rem;
  }
  
  .dropdown-card .card-item i {
    width: 20px;
    text-align: center;
    color: #dc3545;
  }
  
  .dropdown-card .card-item.active {
    background-color: #007bff;
    color: #fff;
  }
  
  .dropdown-card .card-item.active:hover {
    background-color: #0069d9;
  }
    

.logo {
    font-family: "reross-quadratic", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
}

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800;900&display=swap');

button:focus,
input:focus{
  outline: none;
  box-shadow: none;
}
a,
a:hover{
  text-decoration: none;
}

body{
  font-family: 'Nunito', sans-serif;
}

/*----------multiple-file-upload-----------*/
.file-upload-contain{
    position: relative;
    margin-bottom: 40px;
}
.file-upload-contain .file-input,
.file-upload-contain .file-preview{
    position: initial;
}
.file-upload-contain .file-drop-zone{
    border: 2px dashed #1e80e8;
    transition: 0.3s;
    margin: 0;
    padding: 0;
    border-radius: 20px;
    background-color: #f1f8fe;
    min-height: auto;
}
.file-upload-contain .file-drop-zone.clickable:hover,
.file-upload-contain .file-drop-zone.clickable:focus,
.file-upload-contain .file-highlighted{
    border: 2px dashed #1e80e8 !important;
    background-color: #dfedfc;
}
.upload-area i {
    color: #1e80e8;
    font-size: 50px;
}
.upload-area p {
    margin-bottom: 30px;
    margin-top: 30px;
    font-size: 20px;
    font-weight: 600;
    color: #2580e8;
}
.upload-area p b {
    color: #1e80e8;
}
.upload-area button {
    padding: 8px 16px;
    min-width: 150px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: #1e80e8;
    border: 2px solid #1e80e8;
    border-radius: 50px;
    transition: 0.3s;
}
.upload-area button:hover{
    background-color: #1e80e8;
    box-shadow: 0px 4px 8px rgb(37 128 232 / 48%);
}
.file-preview{
    padding: 0;
    border: none;
    margin-bottom: 30px;
}
.file-preview .fileinput-remove{
    display: none;
}
.file-drop-zone-title{
    padding: 55px 10px;
}
.file-drop-zone .file-preview-thumbnails{
    cursor: pointer;
}
.file-preview-frame{
    cursor: default;
    display: flex;
    align-items: center;
    border: none;
    background-color: #2580e8;
    box-shadow: none;
    border-radius: 8px;
    width: 100%;
    padding: 15px;
    margin: 8px 0px;
}
.file-preview-frame:not(.file-preview-error):hover{
    border: none;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 20%);
}
.file-preview-frame .kv-file-content{
    min-width: 45px;
    min-height: 45px;
    width: 45px;
    height: 45px;
    border-radius: 4px;
    margin-right: 10px;
    background-color: #fff;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.file-preview-image {
    border-radius: 4px;
}
.file-preview-frame .file-footer-caption{
    padding-top: 0;
}
.file-preview-frame .file-footer-caption{
    text-align: left;
    margin-bottom: 0;
}
.file-detail{
    font-size: 14px;
    height: auto;
    width: 100%;
    line-height: initial;
}
.file-detail .file-caption-name{
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}
.file-detail .file-size{
    color: #f1f8fe;
    font-size: 12px;
}
.kv-zoom-cache {
    display: none;
}
.file-preview-frame .file-thumbnail-footer{
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.file-preview-frame .file-drag-handle, 
.file-preview-frame .file-upload-indicator{
    float: none;
}
.file-preview-frame .file-footer-buttons{
    float: none;
    display: flex;
    align-items: center;
}
.file-preview-status.text-center {
    display: none;
}
.kv-file-remove.file-remove {
    border: none;
    background-color: #ef2f2f;
    color: #fff;
    width: 25px;
    height: 25px;
    font-size: 12px;
    border-radius: 4px;
    margin: 0px 4px;
}
.file-drag-handle.file-drag {
    border: none;
    background-color: #fff;
    color: #2580e8;
    width: 25px;
    height: 25px;
    font-size: 12px;
    border-radius: 4px;
    margin: 0px 4px;
}
.kv-file-upload.file-upload{
    border: none;
    background-color: #48bd22;
    color: #fff;
    width: 25px;
    height: 25px;
    font-size: 12px;
    border-radius: 4px;
    margin: 0px 4px;
}
.file-thumb-loading{
    background: none !important; 
}
.file-preview-frame.sortable-chosen {
    background-color: #64a5ef;
    border-color: #64a5ef;
    box-shadow: none!important;
}


@media (min-width: 768px) {
    .logo {
      text-align: left;
    }
  }

  
  