.container {
    max-width: 1200px;
    margin-top: 30px;
}

.error-message {
    color: red;
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
    display: none;
}

.delete-btn {
    background-color: transparent;
    border: none;
    color: #dc3545;
    font-size: 1.5rem;
    cursor: pointer;
}

.delete-btn:hover {
    color: #c82333;
}

.btn-back {
    margin-top: 20px;
}

th {
    text-align: center;
    position: relative;
}

th .back-arrow {
    position: absolute;
    left: 10px;
    top: 10px;
    cursor: pointer;
}

td {
    text-align: center;
}

.table {
    width: 100%;
    table-layout: fixed; /* This ensures the column widths are respected */
    border-collapse: collapse;
}

.table th:first-child, 
.table td:first-child {
    width: 35%; /* Match the width from the JS */
}

.table th:not(:first-child):not(:last-child), 
.table td:not(:first-child):not(:last-child) {
    width: calc(65% / 7); /* Distribute the remaining space evenly between the 7 weeks */
    min-width: 60px;
}

.table th:last-child,
.table td:last-child {
    width: 50px; /* Fixed width for the action column */
    min-width: 50px;
}

.table th, .table td {
    word-wrap: break-word;
}

.table select {
    width: 100%;
}

.table th, .table td {
    max-width: 350px;
}


.pnamebox{
    font-size: 11px !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.pnamebox input, .pnamebox .select2-container {
    font-size: 12px !important;
    width: 100% !important;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pnamebox input[readonly] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: default;
}

/* Tooltip on hover for truncated project names */
.pnamebox input[readonly]:hover {
    position: relative;
}






.container {
    width: 100%;
    max-width: 100%;
    height: 100vh; /* Take full viewport height */
    padding: 10px 30px; /* Some padding around the content */
    box-sizing: border-box;
    overflow-y: auto; /* Allow scrolling if content overflows */
}

#fridayHeader{
    font-size: 14px;
    background: #e2e3ee;
}

.readable_date {
    color: #807878;
    font-size: 8px;
}

table td:first-child, table th:first-child {
    background-color: #f3f3f5; /* Replace with your preferred color */
}


.text-danger {
    color: #e4747f !important;
    font-size: 14px;
}









@import url(//fonts.googleapis.com/css?family=Lato:300:400:bold); /* Importing Google Fonts */



h1 {
font-family: "Lato", sans-serif; /* Setting the font for the heading */
font-weight: bold; /* Bold text */
letter-spacing: 2px; /* Adding spacing between characters */
font-size: 26px; /* Setting large font size for desktop */
}

.header {
position: relative;
text-align: center; /* Centering text */
/* Adding gradient background animation */
background-color: #f8f8f8;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
color: rgb(0, 0, 0); /* Text color white */
}

.inner-header {
width: 100%; /* Full width */
display: flex; /* Using flexbox for centering content */
justify-content: center; /* Horizontally centering content */
align-items: center; /* Vertically centering content */
text-align: center; /* Text aligned to the center */
}

.waves {
position: relative;
width: 100%; /* Full width */
height: 12vh; /* The height is 15% of the viewport */
margin-bottom: -7px; /* Fixes a gap issue for Safari */
min-height: 100px; /* Minimum height */
max-height: 150px; /* Maximum height */
}

/* Animation for wave parallax */
.wave-parallax > use {
/* Infinite animation to move the waves */
animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

/* Animating different wave layers at varying speeds */
.wave-parallax > use:nth-child(1) {
animation-delay: -2s; /* Delayed by 2 seconds */
animation-duration: 7s; /* Animation duration is 7 seconds */
}
.wave-parallax > use:nth-child(2) {
animation-delay: -3s; /* Delayed by 3 seconds */
animation-duration: 10s; /* Animation duration is 10 seconds */
}
.wave-parallax > use:nth-child(3) {
animation-delay: -4s; /* Delayed by 4 seconds */
animation-duration: 13s; /* Animation duration is 13 seconds */
}
.wave-parallax > use:nth-child(4) {
animation-delay: -5s; /* Delayed by 5 seconds */
animation-duration: 20s; /* Animation duration is 20 seconds */
}

/* Animation for the wave movement */
@keyframes move-forever {
0% {
    transform: translate3d(-90px, 0, 0); /* Starting position */
}
100% {
    transform: translate3d(85px, 0, 0); /* Ending position */
}
}

/* Animation for the background gradient */
@keyframes gradient {
0% {
    background-position: 0% 50%; /* Starting position of the gradient */
}
50% {
    background-position: 100% 50%; /* Midway position of the gradient */
}
100% {
    background-position: 0% 50%; /* Ending position of the gradient */
}
}

/* Media query for smaller screens */
@media (max-width: 768px) {
.waves {
    height: 40px; /* Reducing wave height on mobile */
    min-height: 40px;
}
.content {
    height: 30vh; /* Adjusting content height for smaller screens */
}
h1 {
    font-size: 24px; /* Smaller font size for mobile devices */
}
}

/* Subscribe button styles */
.subscribe-btn {
position: fixed;
bottom: 10px;
right: 10px;
color: var(--accent-color);
}

/* SVG inside subscribe button */
.subscribe-btn svg {
height: 60px;
width: 60px;
}

/* Floating YouTube Button Styling */
.youtube-button {
position: fixed;
bottom: 20px; /* Distance from the bottom */
right: 20px; /* Distance from the right */
background-color: #ff0000; /* YouTube red color */
color: white;
border-radius: 50%;
width: 50px;
height: 50px;
display: flex;
justify-content: center;
align-items: center;
text-decoration: none;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
transition: all 0.3s ease;
z-index: 2;
}

/* Icon Styling */
.youtube-button i {
font-size: 24px;
}

/* Hover Effect */
.youtube-button:hover {
background-color: #e60000; /* Darker shade of red */
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
transform: translateY(-2px); /* Slight upward movement */
}

/* Keyframes for moving smoky background */
@keyframes move-smoke {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 50% 50%;
    }
    100% {
        background-position: 100% 100%;
    }
}

/* Keyframes for pulsing glow effect */
@keyframes glow-pulse {
    0% {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.9));
    }
    100% {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    }
}


.imglogo {
    cursor: pointer;
    vertical-align: middle;
    border-style: none;
    width: 140px;
    margin-left: 20px;
    margin-top: 12px;
    /* padding-left: 16px; */
    float: left;
    /* mix-blend-mode: lighten; */
    /* filter: drop-shadow(0 0 15px rgba(255, 255, 255, 10.7)); */
    filter: drop-shadow(0 0 19px rgba(255, 255, 255, 18.7));
    /* animation: glow-pulse 2s infinite ease-in-out; */
}

.innerimglogo {
    width: 190px;
    margin-left: 20px;
    margin-top: 22px;
    box-shadow: -2px 0 0px #525252;
}

.feel_class_row {
    background: #d5eef9 !important;
}





@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300);

.frame {
position: absolute;
inset: calc(50% - 200px);
border-radius: 2px;
box-shadow: 1px 2px 10px 0px rgba(0,0,0,0.3);
overflow: hidden;
background: #3F3F3F;
color: #415868;
font-family: 'Open Sans', Helvetica, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
display: grid;
place-content: center;
}

/* .modal {
width: 280px;
height: 210px;
background: #fff;
border-radius: 3px;
box-shadow: 4px 8px 12px 0 rgba(0,0,0,0.4);
text-align: center;
overflow: hidden;
animation: show-modal 0.7s ease-in-out;
box-sizing: border-box;
padding-top: 24px;
display: none; 
} */


.modal {
margin-left: 40%;
margin-top: 14%;
width: 280px;
height: 210px;
background: #fff;
border-radius: 3px;
box-shadow: 4px 8px 12px 0 rgba(0, 0, 0, 0.4);
text-align: center;
overflow: hidden;
animation: show-modal 0.7s ease-in-out;
box-sizing: border-box;
padding-top: 24px;
display: none; /* Hidden by default */
}


.modal h1 {
font-size: 18px;
line-height: 24px;
font-weight: 400;
margin: 14px 0 5px 0;
}

.modal p {
font-size: 14px;
line-height: 19px;
font-weight: 300;
margin: 0;
padding-inline: 30px;
}

.modal label {
line-height: 40px;
display: block;
margin-top: 24px;
color: #fff;
font-size: 14px;
cursor: pointer;
transition: background 0.3s ease-in-out;
}

#modal label{
background: #F65656;
    
}

#modal2 label{
    background: #15901f;

}

#modal label:hover {
background: #EC3434;
}

#modal2 label:hover {
background: #00b913;
}

@keyframes show-modal {
0% {
    transform: scale(0);
}
60% {
    transform: scale(1.1);
}
80% {
    transform: scale(0.95);
}
}

@keyframes hide-modal {
20% {
    transform: scale(1.1);
}
100% {
    transform: scale(0);
}
}

.hide {
animation: hide-modal 0.6s ease-in-out both;
}


.undertext {
    text-decoration: underline;
}





/* Center the mobile message */
#mobileMessage {
padding-left: 16px;
padding-right: 16px;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
/* background-color: rgba(0, 0, 0, 0.5); */
z-index: 1000;
}

#mobileMessage .alert {
background-color: #f8d7da; /* Red background for the alert */
color: #721c24; /* Dark text color for the alert */
border-color: #f5c6cb; /* Light red border */
padding: 20px;
border-radius: 5px;
max-width: 600px;
text-align: center;
}

/* Style the content */


/* Show the mobile message and hide content for mobile devices */
@media (max-width: 768px) {
#mobileMessage {
display: flex;  /* Show the mobile message as a flex container */
}

#content {
display: none;  /* Hide content for mobile devices */
}
}










.rl-loading-container{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.rl-loading-thumb {
    width: 10px;
    height: 40px;
    background-color: #41f3fd;
    margin: 4px;
    box-shadow: 0 0 12px 3px #0882ff;
    animation: rl-loading 1.5s ease-in-out infinite;
}

.rl-loading-thumb-1 {
    animation-delay: 0s;
}

.rl-loading-thumb-2 {
    animation-delay: 0.5s;
}

.rl-loading-thumb-3 {
    animation-delay: 1s;
}



@keyframes rl-loading {
    0% {}
    20% {
        background: white;
        transform: scale(1.5);
    }
    40% {
        background: #41f3fd;
        transform: scale(1);
    }
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgb(0 0 0 / 95%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}


.feel_title {
    text-align: center;
    /* background: #d3eef2 !important; */
    font-style: italic;
}













nav {
    font-size: 14px;
    display: flex;
    /* border: 1px solid white; */
    align-items: center;
    padding: 8px 24px;
    /* font-size: 1.2em; */
    position: sticky;
    top: 0;
  }
  
  .home {
    margin: 0 auto;
  }
  
  ul {
    list-style-type: none;
    display: flex;
    margin-left: auto;
    gap: 40px;
  }
  
  a {
    text-decoration: none;
    color: rgb(0, 0, 0);
  }
  
  li {
    border-bottom: 1px solid transparent;
    transition: border-color 0.8s ease;
  }
  
  li:hover {
    transform: scale(1.1);
    border-color: rgb(51, 50, 50);
  }

  
  #nav_box {
    position: sticky;
    top: 0;
    width: 84%;
    float: right;
  }

  #logout {
    color: #e00000;
    font-weight: 600;
  }


  .nav_elem:hover {
    color: #4f4f4f  /* Optional: change text color to white for better contrast */
  }



  #my_name {
    color: #6b6b6b;
    font-weight: 600;
    /* font-family: sans-serif; */
    /* font-style: italic; */
    /* text-decoration-line: underline; */
    /* background: #9b9b9b; */
    border-radius: 8px;
    padding-left: 4px;
    padding-right: 6px;
  }



  #footer_box {
    background: gray;
    color: white;
    font-size: 11px;
    text-align: center;
    margin-top: 130px;
  }
  
  #user_ico {
    width: 34px;
    border-radius: 50%;
  }







  
  .nav-cust {
    padding-top: 10px;
  }

  .nav-cust a {
    color: gray;
    font-size: 30px;
  }

.top_img_container {
    text-align: left;
    position: absolute;
}

.top_img_container img {
    display: inline-block; /* Keep images side by side */
    margin-right: 10px; /* Add space between images */
    height: auto;
}

.home_icon {
    color: #4f4f4f !important;
    border-bottom: 3px solid #b0b0b0;
}


.sidebar {
    background-color: black;
    width: 4rem;
    /* padding: 14px; */
    text-align: center;

}

.databox {
    width: 100%;
}

.siderect {
    padding-bottom: 80px;
    opacity: 0.4;
    cursor: not-allowed;
    font-size: 31px;
    margin: auto;
    /* margin-top: 6rem; */
    color: #ababab;
}

.user_dash {
    margin-top: 116px;
    opacity: 1 !important;
    cursor: pointer !important;
    color: #e5e5e5;
}

.activebtn {
    opacity: 1 !important;
    cursor: pointer !important;
}

.help {
    cursor: help !important; 
}


.timeentry {
    border: none;
    padding-bottom: 30px;
    font-size: 18px;
}

.tlabel {
    font-family: sans-serif;
    font-size: 16px;
    color: #555555;
}

.move {
    font-size: 10px;
}



.form-control[readonly] {
    cursor: not-allowed;
}

#submitBtn:disabled {
    cursor: not-allowed;
    opacity: 0.6; /* Optional: Make it look disabled */
}








      /* Force options to display as block elements */
      .select2-results__options {
        display: block !important;
    }


    /* Improve dropdown look */
.select2-container--default .select2-selection--single {
border: 2px solid #007bff;
border-radius: 8px;
/* padding: 6px; */
font-size: 16px;
background-color: #f8f9fa;
transition: all 0.3s ease-in-out;
}

/* Focus effect */
.select2-container--default .select2-selection--single:focus {
border-color: #0056b3;
}

/* Improve dropdown options */
.select2-results__option {
font-size: 14px;
padding: 8px 12px;
transition: background 0.3s;
border-radius: 4px;
}

/* Hover effect */
.select2-results__option:hover {
background-color: #007bff !important;
color: #fff !important;
}

/* Prevent text from expanding */
.select2-results__option {
white-space: nowrap !important;
overflow: hidden !important;
text-overflow: ellipsis !important;
max-width: 100% !important;
}

/* Ensure dropdown width matches select box */
.select2-container {
width: 100% !important;
}

/* Add smooth open animation */
.select2-dropdown {
border: 2px solid #007bff;
border-radius: 8px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
animation: fadeIn 0.2s ease-in-out;
}

/* Fade-in animation */
@keyframes fadeIn {
from {
    opacity: 0;
    transform: translateY(-10px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}


/* Increase the height of the dropdown */
.select2-results__options {
max-height: 400px !important; /* Adjust this value as needed */
overflow-y: auto !important; /* Ensure vertical scrolling */
}


/* Center align the text inside options */
.select2-results__option {
/* text-align: center !important; */
padding: 8px 18px !important; /* Adds space around the text */
}

/* Change background color on hover and prevent text from shifting */
.select2-results__option--highlighted {
background-color: #007bff !important; /* Change to your preferred color */
color: white !important;
padding: 8px 18px !important; /* Ensures padding remains the same */
border-radius: 4px; /* Optional: adds rounded corners */
}


.select2-container .select2-selection--single {
height: 34px !important;
}

/* Improve Select2 dropdowns for project names */
.select2-container--default .select2-results__option {
    font-size: 12px;
    padding: 6px 8px;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.select2-container {
    width: 100% !important;
    max-width: 100% !important;
}

.select2-container .select2-selection--single {
    height: auto;
    min-height: 36px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 1.3;
    padding: 8px 10px;
    word-wrap: break-word;
    white-space: normal;
    font-size: 11px;
}

/* New project notification banner */
.project-notification {
    background: linear-gradient(135deg, #f8f9fa 0%, #e2e6ea 100%);
    border-left: 5px solid #007bff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.project-notification:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.project-notification::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    animation: shine 3s infinite;
}

@keyframes shine {
    to {
        transform: translateX(100%);
    }
}

.project-notification .notification-icon {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    margin-right: 15px;
    flex-shrink: 0;
}

.project-notification .notification-icon i {
    animation: pulse 2s infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 123, 255, 0.3));
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.project-notification .notification-content {
    display: inline-block;
    vertical-align: middle;
    flex: 1;
}

.project-notification .notification-message {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.project-notification .highlight {
    background-color: #e7f5ff;
    color: #0069d9;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    margin: 0 2px;
    display: inline-block;
    position: relative;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

/* Styled Add New Project Button */
#addProjectBtn {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 123, 255, 0.25);
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#addProjectBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 123, 255, 0.4);
}

#addProjectBtn::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(30deg);
    transition: all 0.6s ease;
}

#addProjectBtn:hover::after {
    left: 120%;
}

/* Animated arrow pointing to Add Project button */
.arrow-indicator {
    position: absolute;
    bottom: -15px;
    left: 170px;
    width: 30px;
    height: 30px;
    background-color: transparent;
    transform: rotate(45deg);
    z-index: 2;
}

.arrow-indicator::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-right: 3px solid #007bff;
    border-bottom: 3px solid #007bff;
    animation: bounceArrow 2s infinite;
}

@keyframes bounceArrow {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(5px, 5px);
    }
}

/* Dynamic arrow animation that appears when text is clicked */
.dynamic-arrow {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    z-index: 999;
    transition: opacity 0.3s ease;
    --x-distance: 160px;
    --y-distance: 60px;
}

.dynamic-arrow.active {
    opacity: 1;
    animation: moveToButton 1.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.dynamic-arrow svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(0, 105, 217, 0.4));
    transform: rotate(15deg);
}

.dynamic-arrow svg path {
    fill: #007bff;
}

@keyframes moveToButton {
    0% {
        transform: translate(0, 0) scale(0.8) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translate(calc(var(--x-distance) * 0.1), calc(var(--y-distance) * 0.1)) scale(1) rotate(15deg);
    }
    50% {
        opacity: 1;
        transform: translate(calc(var(--x-distance) * 0.5), calc(var(--y-distance) * 0.5)) scale(1.2) rotate(15deg);
    }
    90% {
        opacity: 1;
        transform: translate(calc(var(--x-distance) * 0.9), calc(var(--y-distance) * 0.9)) scale(1) rotate(15deg);
    }
    100% {
        transform: translate(var(--x-distance), var(--y-distance)) scale(0.8) rotate(15deg);
        opacity: 0;
    }
}

/* Add button pulse effect when arrow reaches it */
@keyframes targetPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(0, 123, 255, 0.3);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
        transform: scale(1);
    }
}

.pulse-effect {
    animation: targetPulse 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Enhanced highlight hover and active states */
.highlight {
    transition: all 0.2s ease;
    cursor: pointer;
}

.highlight:hover {
    background-color: #d1e7ff;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.highlight:active {
    background-color: #b8daff;
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
