* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f2f5;
    color: #333;
}

.container {
    display: flex;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

.form-section {
    margin-bottom: 20px;
    width: 100%;
}

.form-section label {
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.form-section input,
.form-section select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 16px;
    transition: border 0.2s ease;
}

.form-section input:focus,
.form-section select:focus {
    border-color: #7f46c4;
}

.icon-preview {
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #7f46c4;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: border-radius 0.3s ease;
}

.icon-preview a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    color: white;
    text-decoration: none;
}

.icon-preview i {
    font-size: 60px;
}

button {
    background-color: #7f46c4;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #6b39a7;
}

button:disabled {
    background-color: #d3d3d3;
}

#spinner {
    display: none;
}

#spinner i {
    font-size: 18px;
    margin-left: 10px;
}

.icon-shape-circle {
    border-radius: 50%;
}

/* Flexbox styling for the icon set and search link */
.icon-set-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.icon-set-wrapper select {
    flex: 1;
    margin-right: 10px;
}

.icon-search-link {
    font-size: 20px;
    color: #7f46c4;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.icon-search-link i {
    margin-left: 8px;
    font-size: 24px;
}

.icon-search-link:hover {
    color: #6b39a7;
}