﻿.btn-block {
    background: linear-gradient( 135deg, #4d0000 0%, #660000 15%, #800000 30%, #990000 45%, #b30000 60%, #cc1a1a 75%, #e03333 90%, #ff6666 100% );
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    font-weight: 600;
    transition: all 0.4s ease;
    text-align: center;
    font-size: large;
    background-size: 300% 300%;
    animation: logoutGradientMove 6s ease infinite;
}

/* Smooth gradient animation */
@keyframes logoutGradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Optional hover effect */
.btn-block:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}
button.btn.btn-danger.btn-block {
    border-radius: 30px;
}



/*//-------------------- Newly added -------------------------------
*//*
      
      
      .poppins-light {
                                    font-family: "Poppins", sans-serif;
                                    font-weight: 300;
                                    font-style: normal;
                                } */
body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
}

.sidebar {
    min-height: 100vh;
    background-color: #208385;
}

    .sidebar .nav-link {
        color: #ffffff;
        padding: 15px 20px;
    }

        .sidebar .nav-link:hover {
            background-color: #1abcbf; /* #155d5e; */
            color: #ffffff;
            border-radius: 6px;
        }

        .sidebar .nav-link.active {
            background-color: #1abcbf; /* #155d5e; */
            color: #ffffff;
            border-radius: 6px;
        }

.main-content {
    margin-left: 0;
}

.sidebar-header {
    padding: 20px;
    color: #ffffff;
    text-align: center;
}

.logout-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
}

    .logout-btn .btn {
        width: 100% !important;
        box-sizing: border-box;
        margin: 0;
        border-radius: 4px;
    }
/* Ensure consistent sidebar width and logout button positioning */
.sidebar {
    width: 16.666667%; /* Bootstrap col-md-2 equivalent */
    min-width: 200px;
}

.project-info {
    background-color: #495057;
    color: #ffffff;
    padding: 10px 20px;
    border-bottom: 1px solid #6c757d;
}

    .project-info .btn-outline-light {
        color: #ffffff;
        border-color: #ffffff;
        background-color: transparent;
        font-weight: 500;
        transition: all 0.3s ease;
        border-width: 1.5px;
    }

        .project-info .btn-outline-light:hover {
            color: #495057;
            background-color: #ffffff;
            border-color: #ffffff;
            transform: translateY(-1px);
            box-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }

        .project-info .btn-outline-light:focus {
            box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
        }

        .project-info .btn-outline-light:active {
            transform: translateY(0);
        }

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1050;
    max-width: 400px;
}



.nav-item {
    cursor: pointer;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

    .nav-item:hover,
    .nav-item:focus {
        outline: none;
        border-color: lightskyblue;
        box-shadow: 0 0 35px white;
        font-size: 21px;
        padding: 0px 0px;
    }



        .nav-item:hover img,
        .nav-item:focus img {
            transform: scale(1.2);
        }

.circular-image {
    width: 70px; /* width of the image */
    height: 70px; /* height of the image */
    border-radius: 50%; /* makes it circular */
    object-fit: cover; /* ensures image fills the circle without distortion */
    object-fit: cover;
    border: 2px solid #14bfbf;
}





/*----------------------- dynamic-dropdown------------------------
*/
.is-placeholder {
    background-color: white;
    color: gray;
}

/* Style when a real item is selected */
.has-value {
    background-color: #fff6ea;
    color: #ff9900;
}

.dynamic-select option:hover {
    background-color: lightgreen !important; /* The desired hover color */
    box-shadow: 0 0 10px 100px lightgreen inset !important; /* Fix for some browsers */
    color: black;
}

.dynamic-select option:checked {
    background-color: #ffb835 !important;
    color: black;
}
/*----------------------- dynamic-dropdown------------------------
*/