.ict-container {
    max-width: 500px;
    margin: 30px auto;
    padding: 20px;
    border-radius: 12px;
    background: linear-gradient(120deg, #d4fc79, #96e6a1);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}
.ict-container input,
.ict-container select,
.ict-container button {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
}
.ict-container select option {
    font-size: 16px;
}
.ict-container button {
    background-color: #28a745;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}
.ict-container button:hover {
    background-color: #218838;
}
.ict-container a {
    display: block;
    margin-top: 10px;
    color: #007bff;
    text-decoration: none;
}
.ict-options-frame {
    border: 2px dashed #aaa;
    border-radius: 10px;
    padding: 10px;
    margin-top: 10px;
    background-color: #f8f9fa;
    text-align: left;
}
.ict-options-frame input {
    width: 95%;
    margin: 5px auto;
    display: block;
}
.ict-options-frame legend {
    font-weight: bold;
    padding: 0 10px;
}
