
        /* All your existing CSS remains the same */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            min-height: 100vh;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding: 20px;
            position: relative;
            overflow-y: auto;
        }
        /* Animated Background */
        .bg-animation {
            position: fixed;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 1;
        }
        .bg-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.6;
            animation: float 20s infinite ease-in-out;
        }
        .blob1 {
            width: 400px;
            height: 400px;
            background: #449d5b;
            top: -200px;
            right: -100px;
            animation-delay: 0s;
        }
        .blob2 {
            width: 300px;
            height: 300px;
            background: #2d7a42;
            bottom: -150px;
            left: -50px;
            animation-delay: 5s;
        }
        .blob3 {
            width: 250px;
            height: 250px;
            background: #5cbf70;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: 10s;
        }
        @keyframes float {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(30px, -30px) scale(1.1);
            }
            66% {
                transform: translate(-20px, 20px) scale(0.9);
            }
        }
        /* Main Container */
        .container {
            position: relative;
            z-index: 10;
            width: 100%;
            max-width: 420px;
            margin: 20px 0;
            transition: max-width 0.3s ease;
        }
        
        /* Media query for larger screens when details card is active */
        @media (min-width: 768px) {
            .container.details-active {
                max-width: 768px;
            }
        }
        
        /* Login Card */
        .login-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            padding: 40px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.8s ease-out;
        }
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        /* Header */
        .header {
            text-align: center;
            margin-bottom: 40px;
        }
        .logo-container {
            position: relative;
            display: inline-block;
            margin-bottom: 20px;
        }
        .logo {
            width: 140px;
        }
        .logo img{
            width: 100%;
            border-radius: 20px;
            position: relative;
            z-index: 10;
        }
        .pulse {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 20px;
            background: rgba(68, 157, 91, 0.3);
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 1;
            }
            100% {
                transform: scale(1.3);
                opacity: 0;
            }
        }
        .title {
            font-size: 28px;
            font-weight: 700;
            color: white;
            margin-bottom: 8px;
        }
        .subtitle {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
        }
        /* Form Elements */
        .form-group {
            margin-bottom: 25px;
        }
        .label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 10px;
        }
        .input-wrapper {
            position: relative;
        }
        .input {
            width: 100%;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.08);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            font-size: 16px;
            color: white;
            transition: all 0.3s ease;
        }
        .input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }
        .input:focus {
            outline: none;
            border-color: #449d5b;
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 0 0 4px rgba(68, 157, 91, 0.2);
        }
        .error-message {
            font-size: 12px;
            color: #ff6b6b;
            margin-top: 5px;
            display: none;
        }
        /* Buttons */
        .btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #449d5b 0%, #2d7a42 100%);
            border: none;
            border-radius: 15px;
            font-size: 16px;
            font-weight: 600;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(68, 157, 91, 0.4);
        }
        .btn:active {
            transform: translateY(0);
        }
        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        .btn:active::before {
            width: 300px;
            height: 300px;
        }
        .btn:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }
        .btn-icon {
            margin-left: 8px;
        }
        /* OTP Section */
        .otp-section {
            display: none;
        }
        .otp-info {
            text-align: center;
            margin-bottom: 25px;
        }
        .otp-phone {
            font-size: 18px;
            font-weight: 600;
            color: #449d5b;
            margin-top: 5px;
        }
        .otp-container {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 25px;
        }
        .otp-input {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.08);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            text-align: center;
            font-size: 20px;
            font-weight: 600;
            color: white;
            transition: all 0.3s ease;
        }
        .otp-input:focus {
            outline: none;
            border-color: #449d5b;
            background: rgba(255, 255, 255, 0.12);
            transform: scale(1.1);
        }
        .otp-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }
        .link-btn {
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            cursor: pointer;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .link-btn:hover {
            color: white;
        }
        .timer {
            color: #449d5b;
            font-weight: 600;
        }
        /* Success Message */
        .success-message {
            display: none;
            text-align: center;
            padding: 40px 0;
        }
        .success-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #449d5b 0%, #2d7a42 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 40px;
            color: white;
            animation: successPulse 0.6s ease-out;
        }
        @keyframes successPulse {
            0% {
                transform: scale(0);
            }
            50% {
                transform: scale(1.2);
            }
            100% {
                transform: scale(1);
            }
        }
        .success-title {
            font-size: 24px;
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
        }
        .success-text {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
        }
        /* Footer */
        .footer {
            text-align: center;
            margin-top: 30px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
        }
        .footer a {
            color: #449d5b;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: #5cbf70;
        }
        /* Loading Spinner */
        .spinner {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s ease-in-out infinite;
        }
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        /* Details Section Styles */
        .details-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            padding: 40px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.8s ease-out;
            display: none;
            margin-top: 20px;
        }
        
        .other-row{
                 display: grid;
                grid-template-columns: 1fr ; /* Creates 2 equal columns */
                gap: 20px; /* Space between boxes */
            }
        
        /* Adjust form layout for wider screens */
        @media (min-width: 768px) {
            .details-card .form-row {
                display: flex;
                gap: 20px;
            }
            
            .other-box-data, .details-card .form-row .form-group {
                flex: 1;
            }
            .other-box-data{
                width: 100%;
                display: flex;
                gap: 8px;
                flex-direction: column;
            }
            .other-row{
                 display: grid;
                grid-template-columns: 1fr 1fr; /* Creates 2 equal columns */
                gap: 20px; /* Space between boxes */
            }
        }
        
        .radio-group {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
        }
        
        .radio-label {
            display: flex;
            align-items: center;
            color: rgba(255, 255, 255, 0.8);
            font-size: 16px;
            cursor: pointer;
        }
        
        .radio-label input[type="radio"] {
            margin-right: 8px;
            cursor: pointer;
        }
        
        .tabs-container {
            margin-top: 30px;
        }
        
        .tabs {
            display: flex;
            border-bottom: 2px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 25px;
        }
        
        .tab-btn {
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.6);
            font-size: 16px;
            font-weight: 600;
            padding: 12px 20px;
            cursor: pointer;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .tab-btn.active {
            color: white;
        }
        
        .tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #449d5b;
        }
        
        .tab-content.active {
            display: block;
        }
        
        .checkbox-group {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .checkbox-group input[type="checkbox"] {
            margin-right: 10px;
            cursor: pointer;
        }
        
        .checkbox-group label {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            cursor: pointer;
        }
        
        .checkbox-group a {
            color: #449d5b;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .checkbox-group a:hover {
            color: #5cbf70;
        }
        
        select option{
            color: #1a1a1a;
        }
        
        /* Image Upload Styles */
        .image-upload-container {
            position: relative;
            margin-bottom: 25px;
        }
        
        .image-upload-label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 10px;
        }
        
        .image-upload-input {
            display: none;
        }
        
        .image-upload-button {
            width: 100%;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.08);
            border: 2px dashed rgba(255, 255, 255, 0.3);
            border-radius: 15px;
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .image-upload-button:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: #449d5b;
            color: white;
        }
        
        .image-upload-button i {
            font-size: 24px;
        }
        
        .image-preview-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 15px;
        }
        
        .image-preview-item {
            position: relative;
            width: 100px;
            height: 100px;
            border-radius: 10px;
            overflow: hidden;
            border: 2px solid rgba(255, 255, 255, 0.1);
        }
        
        .image-preview-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .image-preview-remove {
            position: absolute;
            top: 5px;
            right: 5px;
            width: 24px;
            height: 24px;
            background: rgba(255, 59, 48, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: white;
            font-size: 12px;
            transition: all 0.2s ease;
        }
        
        .image-preview-remove:hover {
            background: rgba(255, 59, 48, 1);
            transform: scale(1.1);
        }
        
        .image-upload-limit {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
            margin-top: 8px;
            text-align: center;
        }
         
        .other-info-box {
            margin-top: 15px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.8s ease-out;
        }
        .other-box-data{
            padding: 15px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            color: #ffffffcc;
            position: relative;
        }
        .other-box-data .other-data{
            width: 20px;
            position: absolute;
            right: 5px;
            top: 5px;
        }
        .add-other-data{
            display: none;
        }
         #add-other-data{
            padding:10px 16px;
            background: linear-gradient(135deg, #449d5b 0%, #2d7a42 100%);
            border: none;
            border-radius: 15px;
            font-size: 16px;
            font-weight: 600;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            }
    
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
        
        /* Responsive Design */
        @media (max-width: 480px) {
            .login-card, .details-card {
                padding: 30px 20px;
            }
            .title {
                font-size: 24px;
            }
            .otp-input {
                width: 45px;
                height: 45px;
                font-size: 18px;
            }
            .otp-container {
                gap: 10px;
            }
            .otp-actions {
                flex-direction: column;
                gap: 15px;
            }
            .radio-group {
                flex-direction: column;
                gap: 10px;
            }
            .image-preview-item {
                width: 80px;
                height: 80px;
            }
        }
        @media (max-width: 360px) {
            .otp-input {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
            .otp-container {
                gap: 8px;
            }
            .image-preview-item {
                width: 70px;
                height: 70px;
            }
        }
        
        /* Custom Select Styles */
        .custom-select {
            position: relative;
            width: 100%;
            /*margin-bottom: 25px;*/
        }
        
        .custom-select-trigger {
            width: 100%;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.08);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            font-size: 16px;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .custom-select-trigger::after {
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .custom-select-trigger:hover {
            background: rgba(255, 255, 255, 0.12);
        }
        
        .custom-select-trigger.open {
            border-color: #449d5b;
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 0 0 4px rgba(68, 157, 91, 0.2);
        }
        
        .custom-select-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            margin-top: 5px;
            z-index: 1000;
            display: none;
            max-height: 200px;
            overflow-y: auto;
        }
        
        .custom-select-dropdown.open {
            display: block;
        }
        
        .custom-select-search {
            /*width: 100%;*/
            /*padding: 10px 15px;*/
            /*background: rgba(255, 255, 255, 0.1);*/
            /*border: none;*/
            /*border-bottom: 1px solid rgba(255, 255, 255, 0.1);*/
            /*color: white;*/
            /*border-radius: 15px 15px 0 0;*/
            /*font-size: 14px;*/
            
                width: 100%;
                padding: 10px 15px;
                background: rgb(0 140 181);
                border: none;
                border-bottom: 1px solid rgb(0 140 181);
                color: white;
                border-radius: 15px 15px 0 0;
                font-size: 14px;
            
        }
        
        .custom-select-search::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .custom-select-options {
            max-height: 150px;
            overflow-y: auto;
        }
        
        .custom-select-option {
            padding: 10px 15px;
            cursor: pointer;
            color: rgba(0, 0, 0, 0.8);
            transition: background 0.2s;
            background: #fff;
            display: flex;
            align-items: center;
        }
        
        .custom-select-option:hover {
            background: #449d5b;
            color: white;
        }
        
        .custom-select-option.selected {
            background: #449d5b;
            color: white;
        }
        
        .custom-select-option.no-results {
            color: rgba(255, 255, 255, 0.5);
            font-style: italic;
            cursor: default;
        }
        
        .custom-select-option.no-results:hover {
            background: none;
        }
        
        /* Multi-select specific styles */
        .custom-select.multi-select .custom-select-option {
            padding-left: 35px;
            position: relative;
        }
        
        .custom-select.multi-select .custom-select-option::before {
            content: '';
            position: absolute;
            left: 10px;
            top: 50%;
            transform: translateY(-50%);
            width: 16px;
            height: 16px;
            border: 2px solid #449d5b;
            border-radius: 3px;
            background: transparent;
        }
        
        .custom-select.multi-select .custom-select-option.selected::before {
            background: #1a4124;
            border-color: #1a4124;
        }
        
        .custom-select.multi-select .custom-select-option.selected::after {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            font-size: 12px;
        }
        
        .custom-select.multi-select .custom-select-trigger {
            flex-wrap: wrap;
            height: auto;
            min-height: 52px;
            padding-top: 12px;
            padding-bottom: 12px;
        }
        
        .selected-tag {
            background: rgba(68, 157, 91, 0.3);
            border-radius: 20px;
            padding: 4px 10px;
            margin: 2px 5px 2px 0;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
        }
        
        .selected-tag-remove {
            margin-left: 6px;
            cursor: pointer;
            font-size: 12px;
        }
        
        .placeholder-text {
            color: rgba(255, 255, 255, 0.5);
        }
        
        /* Custom Calendar Styles */
        .calendar-container {
            position: relative;
            width: 100%;
            margin-bottom: 25px;
        }
        
        .calendar-trigger {
            width: 100%;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.08);
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            font-size: 16px;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .calendar-trigger::after {
            content: '\f073';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .calendar-trigger:hover {
            background: rgba(255, 255, 255, 0.12);
        }
        
        .calendar-trigger.open {
            border-color: #449d5b;
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 0 0 4px rgba(68, 157, 91, 0.2);
        }
        
        .calendar-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: #fff;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            margin-top: 5px;
            z-index: 1000;
            display: none;
            padding: 15px;
        }
        
        .calendar-dropdown.open {
            display: block;
        }
        
        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .calendar-month-year {
            font-size: 18px;
            font-weight: 600;
            color: rgb(0, 0, 0);
        }
        
        .calendar-nav {
            display: flex;
            gap: 10px;
        }
        
        .calendar-nav button {
            background: none;
            border: none;
            color: rgba(0, 0, 0, 0.7);
            cursor: pointer;
            font-size: 16px;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }
        
        .calendar-nav button:hover {
            background: #449d5b;
            color: white;
        }
        
        .calendar-nav button:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }
        
        .calendar-weekdays {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 5px;
            margin-bottom: 10px;
        }
        
        .calendar-weekday {
            text-align: center;
            font-size: 14px;
            font-weight: 600;
            color: rgba(0, 0, 0, 0.7);
            padding: 5px 0;
        }
        
        .calendar-days {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 5px;
        }
        
        .calendar-day {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.2s ease;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .calendar-day:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .calendar-day.other-month {
            color: rgba(0, 0, 0, 0.3);
        }
        
        .calendar-day.sunday {
            color: #449d5b;
            font-weight: 600;
        }
        
        .calendar-day.selectable {
            /*background: rgba(68, 157, 91, 0.2);*/
            background: #348148;
        }
        
        .calendar-day.selectable:hover {
            background: rgba(68, 157, 91, 0.4);
        }
        
        .calendar-day.selected {
            background: #449d5b;
            color: white;
        }
        
        .calendar-day.disabled {
            color: rgba(0, 0, 0, 0.3);
            cursor: not-allowed;
        }
        
        .calendar-day.disabled:hover {
            background: none;
        }
        
        .calendar-info {
            margin-top: 15px;
            padding: 10px;
            background: rgba(68, 157, 91, 0.2);
            border-radius: 10px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
            text-align: center;
        }

.multi-select-checkbox{
        visibility: hidden !important;
}


        /* Custom Alert Styles */
/* Custom Alert Styles */
.custom-alert {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.custom-alert.show {
  display: flex;
  opacity: 1;
}

.alert-content {
  background-color: white;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.custom-alert.show .alert-content {
  transform: translateY(0);
}

.alert-icon {
  font-size: 50px;
  margin-bottom: 15px;
}

.alert-icon.error {
  color: #2d7a42;
}

.alert-icon.success {
  color: #2d7a42; /* Using the darker shade for the icon */
}

.alert-message {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.5;
}

.alert-button {
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  min-width: 100px;
}

.alert-button.error {
  background-color: #449d5b;
}

.alert-button.error:hover {
  background-color: #449d5b;
  transform: translateY(-2px);
}

.alert-button.success {
  background: linear-gradient(135deg, #449d5b 0%, #2d7a42 100%);
  box-shadow: 0 4px 8px rgba(45, 122, 66, 0.2);
}

.alert-button.success:hover {
  background: linear-gradient(135deg, #3d8b51 0%, #256837 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(45, 122, 66, 0.3);
}

#alertIcon{
    color: #3d8b51;
}


/* #materialTypeSelect > div.custom-select-dropdown.open > div > div:nth-child(1) > input { */
/* #materialTypeSelect > div.custom-select-dropdown.open > div > div:nth-child(2) > input {
    display: none;
} */

#materialTypeSelect > div.custom-select-dropdown.open > div > div > input {
    display: none;
}

#dispose-material-type-select > div.custom-select-dropdown.open > div > div.custom-select-option.selected > input {
    display: none;
}

/* Error Message Styling */

