:root {
    --main-color: rgb(242, 244, 250);
    --side-color: rgb(255, 252, 224);
    --third-color: rgb(11, 56, 122);
    --input-background: rgb(242, 244, 250);
}


.a-no-style {
    text-decoration: none;
    color: inherit;
}

.a-no-style:hover {
    text-decoration: none;
    color: inherit;
}

.sidebar {
    width: 230px;
    color: black;
    font-weight: 500;
    height: 110vh;
    position: absolute;
    transition: transform 0.3s ease;
    z-index: 1;
    /* Negative z-index to position behind other elements */
}

.sidebar-collapsed {
    transform: translateX(-230px);
}



.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* border-bottom: 1px solid #3c546c; */
}

.sidebar-title {
    font-weight: 600;
    font-size: 1.2rem;
}

.nav-list {
    list-style: none;
    padding: 0;
}

.nav-item {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.nav-item:hover {
    background-color: #34495e;
}

.nav-item.active {
    background-color: #1abc9c;
}

.nav-item i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.main-content {
    flex: 1;
    padding: 20px;
    margin-left: 250px;
    transition: margin-left 0.3s ease;
}

.main-content-expanded {
    margin-left: 0;
}

.menu-toggle {
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 100;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: left 0.3s ease;
}

.menu-toggle-moved {
    left: 20px;
}

@media (max-width: 992px) {
    .sidebar {
        transform: translateX(-230px);
    }

    .sidebar-expanded {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 230px;
    }

    .menu-toggle {
        left: 10px;
        top: 40px;
    }

    .menu-toggle-moved {
        left: 10px;
        top: 40px;

    }

    .main-general-info-list {
        margin-left: -25px;
    }

    .main-info-info-span {
        font-size: 15px;
    }

    .main-general-form-text {
        font-size: 18px;
    }
}

.file-upload {
    position: relative;
    display: inline-block;
}

.file-upload-input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.file-upload-btn {
    background-color: rgb(11, 79, 182);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s;
}

.file-upload-btn:hover {
    background-color: #45a049;
}

.file-name {
    margin-left: 10px;
    font-size: 14px;
    color: #666;
}

.file-upload-icon {
    margin-right: 8px;
}

/* Optional: Add animation for selected state */
.file-selected .file-upload-btn {
    background-color: #357abd;
}
