
/* Modern and Beautiful Styling for Unified Container */
.styled-container {
    max-width: 700px;
    margin: 30px auto;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
}

.styled-form {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.styled-label {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333333;
    font-weight: 600;
}

.styled-select,
.styled-input {
    padding: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
}

.styled-button {
    background-color: #37beb1;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.styled-button:hover {
    background-color: #2ea397;
}

.styled-results {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.styled-list li {
    margin-bottom: 10px;
}

.styled-link {
    color: #37beb1;
    text-decoration: none;
}

.styled-link:hover {
    text-decoration: underline;
}

.styled-resource {
    margin-top: 20px;
    font-size: 14px;
    text-align: center;
}
    