.elementor-777 .elementor-element.elementor-element-3ef69a9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-64cd85d *//* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #000000; /* Black background */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    color: #ffffff; /* White text for readability on black background */
}

.container {
    background: #1e1e1e; /* Dark gray container background */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1); /* Light shadow on black */
    max-width: 600px;
    width: 95%;
    margin: 20px auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.15); /* Enhanced shadow on black */
}

/* Logo Styles */
.logo {
    text-align: center;
    margin-bottom: 30px;
}

.logo img {
    max-width: 70%;
    height: auto;
    filter: brightness(1.1); /* Adjust if logo is too dark */
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #f0f0f0; /* Light gray label */
    transition: color 0.3s ease;
}

label:hover {
    color: #712bb8; /* Purple on label hover */
}

select,
input {
    width: 100%;
    padding: 14px;
    border: 1px solid #444; /* Darker border */
    border-radius: 8px;
    font-size: 17px;
    background-color: #333; /* Dark background for input fields */
    color: #fff; /* White text in input fields */
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

select:focus,
input:focus {
    outline: none;
    border-color: #712bb8;
    box-shadow: 0 0 8px rgba(113, 43, 184, 0.5); /* Enhanced purple shadow */
}

/* Button Styles */
button {
    background-color: #712bb8;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 19px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(113, 43, 184, 0.3);
}

button:hover {
    background-color: #b8030c;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(184, 3, 12, 0.4);
}

button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(113, 43, 184, 0.4);
}

/* Result Container Styles */
.result-container {
    margin-top: 40px;
}

#copyBtn {
    margin-bottom: 15px;
    background-color: #555;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#copyBtn:hover {
    background-color: #333;
    transform: scale(1.05);
}

.result {
    background: #333; /* Dark result background */
    padding: 25px;
    border-radius: 12px;
    font-family: 'Courier New', monospace;
    white-space: pre-wrap;
    font-size: 15px;
    color: #f0f0f0; /* Light text in result area */
    border: 1px solid #555; /* Darker border */
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2); /* Darker inner shadow */
}

/* Footer Styles */
.footer {
    text-align: center;
    margin-top: 40px;
    color: #888;
}

.footer a {
    color: #712bb8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer a:hover {
    color: #b8030c;
    text-shadow: 0 1px 2px rgba(184, 3, 12, 0.5);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 30px;
    }

    .logo img {
        max-width: 80%;
    }

    button {
        font-size: 17px;
    }

    select,
    input {
        font-size: 16px;
    }
}/* End custom CSS */