/* Default styles for all screens */
html, body {
    height: 100%;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f1f1f1;
    overflow-x: hidden; /* Lock horizontal scrolling */
}

.container {
    width: 60%; /* Default width for PC */
    max-width: 1200px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-x: auto; /* Enable horizontal scrolling */
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

label {
    display: block;
    margin-top: 3px;
    font-weight: bold;
    color: #555;
}

input, select, button {
    width: 100%; /* Full width */
    padding: 12px; /* Padding on all sides */
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #f9f9f9;
    color: #333;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
    margin-bottom: 10px; /* Adjust spacing between elements */
    outline: none;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}

/* Modern input styles */
input, select {
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    background-color: #ffffff;
    font-size: 16px;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

input:focus, select:focus {
    border-color: #FFAF6CD8;
    box-shadow: 0 2px 4px rgba(255, 175, 108, 0.2);
}

/* Modern button styles */
.generate-button {
    background-color: #FFAF6CD8;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    width: 50%;
    align-self: center;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.generate-button:hover {
    background-color: #FF8B3D;
}

.copy-button {
    background-color: transparent;
    color: #FFAF6CD8;
    border: 1px solid #FFAF6CD8;
    cursor: pointer;
    padding: 10px;
    border-radius: 4px;
    font-weight: bold;
    width: 100%;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.copy-button:hover {
    background-color: #FF9D5C;
    color: #fff;
}

.result-box {
    padding: 10px;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    border-radius: 4px;
    white-space: pre-wrap;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        width: 80%; /* Adjust container width for mobile */
    }
}