     .invalid-feedback {
            color: red;
            font-size: 0.8em;
            margin-top: 5px;
            display: none; /* Hidden by default */
        }
        input.is-invalid {
            border: 1px solid red;
        }
        input.is-valid {
            border: 1px solid green;
        }
        /* Form Section Styles */
        .form-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid layout */
            gap: 20px; /* Space between form groups */
             margin: 10px;
            margin-bottom: 30px;
            padding: 20px;
            background-color: #f8fafc;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
        }

        .form-section h3 {
            grid-column: 1 / -1; /* Make sub-headings span all columns */
            color: #475569;
            font-size: 1.3em;
            margin-top: 10px;
            margin-bottom: 15px;
            border-bottom: 1px dashed #cbd5e1;
            padding-bottom: 8px;
        }

        /* Form Group Styles (Label + Input/Select) */
        .form-group {
            display: flex;
            flex-direction: column;
        }

        /* Label Styles */
        .form-label {
            display: block;
            margin-bottom: 8px;
            color: #475569;
            font-weight: 500;
            font-size: 0.95em;
        }

        /* Input and Select Base Styles form-section*/
        .form-input,
        .form-select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #cbd5e1;
            border-radius: 8px;
            font-size: 1em;
            color: #334155;
            box-sizing: border-box; /* Include padding and border in the element's total width and height */
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            -webkit-appearance: none; /* Remove default styling for selects on some browsers */
            -moz-appearance: none;
            appearance: none;
            background-color: #ffffff;
        }

        /* Placeholder Text Styling */
        .form-input::placeholder {
            color: #94a3b8;
            opacity: 1; /* Firefox default opacity is lower */
        }

        /* Input and Select Focus/Hover Effects */
        .form-input:hover,
        .form-select:hover {
            border-color: #93c5fd; /* Light blue */
            box-shadow: 0 0 0 3px rgba(147, 197, 253, 0.5); /* Subtle blue glow */
        }

        .form-input:focus,
        .form-select:focus {
            outline: none;
            border-color: #00b0f0; /* Stronger blue */
            box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.4); /* More prominent blue glow */
        }

.form-select {
    /* Remove default arrow */
    -webkit-appearance: none; /* For older Chrome, Safari */
    -moz-appearance: none;    /* For Firefox */
    appearance: none;         /* Standard property */
    background-image: none;   /* Ensure no background image (like an SVG arrow) */

    /* Reset padding if you had it for the old arrow */
    padding-right: 12px; /* Adjust as needed, typical default padding */

    /* Add your desired styling for the select box itself */
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 1rem;
    height: 40px; /* Example height */
    cursor: pointer;
    background-color: #fff;
    color: #333;
}

/* Optional: Add a focus style */
.form-select:focus {
    outline: none;
    border-color: #007bff; /* Example focus color */
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

        /* Styles for disabled selected option in select */
        .form-select option[disabled]:first-child {
            color: #94a3b8;
        }

        /* Validation Feedback Styles (from previous interaction) */
        .invalid-feedback {
            color: #ef4444; /* Red color */
            font-size: 0.85em;
            margin-top: 6px;
            display: none; /* Hidden by default */
        }
        .form-input.is-invalid,
        .form-select.is-invalid {
            border-color: #ef4444; /* Red border */
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.3);
        }
        .form-input.is-valid,
        .form-select.is-valid {
            border-color: #22c55e; /* Green border */
            box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.3);
        }

        /* Button Section Styling */
        .button-section {
            display: flex;
            flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
            justify-content: center;
            gap: 10px; /* Space between buttons */
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #e2e8f0;
        }

        /* Base Button Styles */
        .action-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 5px 12px;
            border: none;
            border-radius: 9999px; /* Pill shape */
            cursor: pointer;
            font-size: 1em;
            font-weight: 500;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s ease; /* Smooth transitions for all properties */
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            background-blend-mode: multiply; /* For subtle gradient effect */
        }

        .action-btn .button-icon {
            margin-right: 8px;
            font-size: 1.1em;
        }

        /* Primary Button Styles */
        .primary-action-btn {
            background: linear-gradient(135deg, #3b82f6, #2563eb); /* Blue gradient */
            color: #ffffff;
        }


.primary-action-btn2 {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
}

.primary-action-btn3 {
    /* Purple gradient */
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: #ffffff;
}

        /* Secondary Button Styles */
        .secondary-action-btn {
            background: linear-gradient(135deg, #64748b, #475569); /* Gray gradient */
            color: #ffffff;
        }

        /* Danger Button Styles */
        .danger-action-btn {
            background: linear-gradient(135deg, #ef4444, #dc2626); /* Red gradient */
            color: #ffffff;
        }

        /* Button Hover Effects */
        .action-btn:hover {
            transform: translateY(-3px); /* Lift effect */
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
            opacity: 0.9;
        }

        .primary-action-btn:hover {
            background: linear-gradient(135deg, #2563eb, #3b82f6); /* Reverse gradient on hover */
        }

        .secondary-action-btn:hover {
            background: linear-gradient(135deg, #475569, #64748b);
        }

        .danger-action-btn:hover {
            background: linear-gradient(135deg, #dc2626, #ef4444);
        }

        /* Button Active (Click) Effects */
        .action-btn:active {
            transform: translateY(0); /* Press down effect */
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            opacity: 1;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .form-container {
                padding: 20px 25px;
            }
            .form-section {
                grid-template-columns: 1fr; /* Stack columns on small screens */
                padding: 15px;
            }
            .section-heading {
                font-size: 1.5em;
            }
            .action-btn {
                width: 100%; /* Full width buttons on small screens */
                padding: 10px 20px;
                font-size: 0.95em;
            }
            .button-section {
                flex-direction: column; /* Stack buttons vertically IconsFolder */
                align-items: stretch; /* Stretch buttons to full width */
            }
        }

        .edit-icon {
    width: 20px;
    height: 20px;
    margin-right: 3px;
    /* Adjust the path to your IconsFolder and the specific icon file */
    background: url('../Register/IconsFolder/EditIcon5.png') center/cover;
    display: inline-block;
    vertical-align: middle;
}


.delete-icon {
   width: 20px;
   height: 20px;
   margin-right: 3px;
   /* Adjust the path to your IconsFolder and the specific icon file */
   background: url('../Register/IconsFolder/DeleteIcon3.png') center/cover;
   display: inline-block;
   vertical-align: middle;
}