body
{
   background-color: #FFFFFF;
   background-image: url('images/vakre aerith.jpg');
   background-attachment: fixed;
   background-position: left top;
   background-repeat: repeat;
   background-size: 100% 100%;
   color: #000000;
   font-family: Arial;
   font-weight: normal;
   font-size: 16px;
   line-height: 1.1875;
   margin: 0;
   padding: 0;
}
#wb_Text1 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: left;
}
#wb_Text1 div
{
   text-align: left;
}
        /* General body styling */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.5); /* Transparent background */
        }

        /* Form container styling */
        .form-container {
            text-align: center;
            background-color: transparent;
            padding: 20px;
            border-radius: 10px;
        }

        /* Title styling */
        .form-title {
            font-size: 24px;
            color: white;
            margin-bottom: 20px;
        }

        /* Dropdown styling */
        .dropdown {
            width: 230px;
            padding: 10px;
            font-size: 16px;
            color: red;
            border: 1px solid red;
            border-radius: 4px;
            background-color: rgba(255, 255, 255, 0.45);
            outline: none;
            margin-bottom: 20px;
        }

        /* Submit button styling */
        .submit-button {
            padding: 10px 20px;
            font-size: 16px;
            color: white;
            background-color: #A40A07;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        /* Hover effect for submit button */
        .submit-button:hover {
            background-color: #8A0906;
        }
        
        .submit-button:disabled {
            background-color: #999;
            color: #ccc;
            cursor: not-allowed;
            opacity: 0.6;
        }
        
        .submit-button:disabled:hover {
            background-color: #999;
        }

        /* Dropdown options styling for transparency */
        .dropdown option {
            background-color: rgba(255, 255, 255, 0.45);
            color: red;
        }
        
        /* Additional styling for better dropdown transparency */
        .dropdown {
            backdrop-filter: blur(5px);
        }
        
        /* For browsers that support it */
        .dropdown::-webkit-listbox {
            background-color: rgba(255, 255, 255, 0.45);
        }
        
        /* Styling for the dropdown list when open */
        .dropdown:focus {
            background-color: rgba(255, 255, 255, 0.45);
        }
        
        /* Styling for dropdown options when list is open */
        .dropdown option {
            background-color: rgba(255, 255, 255, 0.45) !important;
        }
        
        /* Additional styling for the dropdown list container */
        select.dropdown {
            background-color: rgba(255, 255, 255, 0.45);
        }
        
        /* Force transparency for dropdown list */
        .dropdown {
            background-color: rgba(255, 255, 255, 0.45) !important;
        }
        
        /* WebKit specific styling for dropdown list */
        .dropdown::-webkit-select-placeholder {
            background-color: rgba(255, 255, 255, 0.45);
        }
        
        /* Firefox specific styling */
        .dropdown {
            -moz-appearance: none;
            background-color: rgba(255, 255, 255, 0.45) !important;
        }
        
        /* Override any default browser styling */
        select#dropdown-options {
            background-color: rgba(255, 255, 255, 0.45) !important;
        }
        
        /* Target the dropdown list specifically */
        .dropdown:focus option {
            background-color: rgba(255, 255, 255, 0.45) !important;
        }
        
        /* Additional browser-specific overrides */
        .dropdown option:hover {
            background-color: rgba(255, 255, 255, 0.6) !important;
        }
        
        .dropdown option:checked {
            background-color: rgba(255, 255, 255, 0.45) !important;
        }
        
        /* Custom dropdown styling */
        .custom-dropdown {
            position: relative;
            width: 250px;
            margin: 0 auto 20px;
        }
        
        .dropdown-header {
            padding: 10px;
            font-size: 16px;
            color: #A40A07;
            border: 1px solid #A40A07;
            border-radius: 4px;
            background-color: rgba(255, 255, 255, 0.45);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .dropdown-arrow {
            font-size: 12px;
            transition: transform 0.3s ease;
        }
        
        .dropdown-options {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: rgba(255, 255, 255, 0.45);
            border: 1px solid #A40A07;
            border-top: none;
            border-radius: 0 0 4px 4px;
            display: none;
            z-index: 1000;
        }
        
        .dropdown-option {
            padding: 10px;
            color: #A40A07;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .dropdown-option:hover {
            background-color: rgba(255, 255, 255, 0.6);
        }
        
        .custom-dropdown.open .dropdown-arrow {
            transform: rotate(180deg);
        }
        
        .custom-dropdown.open .dropdown-options {
            display: block;
        }
        
        /* Button container styling */
        .button-container {
            display: flex;
            gap: 10px;
            justify-content: center;
            margin-top: 10px;
        }
        
        /* Preview button styling */
        .preview-button {
            padding: 10px 20px;
            font-size: 16px;
            color: white;
            background-color: #A40A07;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .preview-button:hover {
            background-color: #8A0906;
        }
        
        .preview-button:disabled {
            background-color: #999;
            cursor: not-allowed;
        }
        
        /* Modal styling */
        .modal {
            display: none;
            position: fixed;
            z-index: 2147483647;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
        }
        
        .modal-content {
            background-color: rgba(255, 255, 255, 0.3);
            margin: 2% auto;
            padding: 30px;
            border: 2px solid red;
            border-radius: 10px;
            width: 90%;
            max-width: 800px;
            max-height: 80vh;
            position: relative;
            z-index: 2147483647;
            overflow-y: auto;
            box-sizing: border-box;
            word-wrap: break-word;
            overflow-wrap: break-word;
            backdrop-filter: blur(2px);
        }
        
        .close {
            color: red;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }
        
        .close:hover {
            color: darkred;
        }
        
        .preview-title {
            color: red;
            font-size: 24px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .preview-description {
            color: #333;
            font-size: 16px;
            line-height: 1.5;
            margin-bottom: 20px;
        }
        
        .preview-image {
            width: 100%;
            max-width: 100%;
            min-height: 200px;
            background-color: #f0f0f0;
            border: 1px solid #ccc;
            border-radius: 5px;
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            margin: 0 auto;
            color: #666;
            overflow-y: auto;
            padding: 15px;
            box-sizing: border-box;
        }
        
        /* Force copyright to lowest z-index */
        #wb_JavaScript1 {
            z-index: -1 !important;
        }
        
        #copyrightnotice {
            z-index: -1 !important;
        }
        
        /* Ensure text wraps properly in modal */
        .modal-content p,
        .modal-content li,
        .modal-content h3,
        .modal-content h5 {
            word-wrap: break-word;
            overflow-wrap: break-word;
            max-width: 100%;
        }
        
        /* Force all modal content to have transparent backgrounds */
        .modal-content *,
        .modal-content div,
        .modal-content p,
        .modal-content h3,
        .modal-content ul,
        .modal-content li,
        .modal-content strong {
            background-color: transparent !important;
        }
    