/* Extracted from client/layouts/app.blade.php so browsers can cache it. */
        /* Modal Background */
        .custom-modal {
            background-color: #ffffff;
            /* White background for the form area as per image */
            border-radius: 15px !important;
            padding: 10px;
            border: none;
        }

        /* Title Styling */
        .modal-title {
            color: #1a1a1a;
            font-weight: 700;
            font-size: 1.2rem;
        }

        /* Fix for Close Button (Standard Bootstrap 5) */
        .btn-close {
            opacity: 0.8;
        }

        /* Input Styles */
        .custom-input {
            background-color: #fff;
            border: 1px solid #e0e0e0;
            border-radius: 6px;
            padding: 12px;
            margin-bottom: 12px;
            color: #333;
        }

        .custom-input:focus {
            box-shadow: none;
            border-color: #000;
        }

        /* Captcha Label */
        .captcha-container .form-label {
            font-weight: 600;
            color: #1a1a1a;
            margin-bottom: 8px;
            display: block;
        }

        /* Submit Button */
        .btn-submit {
            background-color: #212529;
            /* Dark gray/black like your site */
            color: white;
            font-weight: 600;
            padding: 12px;
            width: 100%;
            border-radius: 6px;
            transition: 0.3s;
            border: none;
        }

        .btn-submit:hover {
            background-color: #000;
            color: #fff;
        }

        /* Force the close button to be visible and styled */
        #companyProfileModal .btn-close {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
            background-size: 12px;
            opacity: 0.8;
            transition: opacity 0.2s;
            margin-right: 5px;
            margin-top: 5px;
        }

        #companyProfileModal .btn-close:hover {
            opacity: 1;
            background-color: transparent;
            /* Ensures no gray box appears on hover */
        }

        /* Ensure the header has enough padding for the button */
        #companyProfileModal .modal-header {
            padding: 1.5rem 1.5rem 0.5rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
    
