:root {
    --primary-color: #C9C9C9;
    --secondary-color: #E7E6E5;
    --button-hover-color: #A2A2A2;
    --text-color: #333;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: var(--text-color);
    margin: 0;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    width: 400px;
    text-align: center;
    margin: 60px auto; /* Adjusted margin */
}

label {
    display: block;
    margin-bottom: 12px;
    font-weight: bold;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="url"],
textarea,
select {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

input[type="file"] {
    margin-bottom: 24px;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #0066cc;
    box-shadow: 0 0 3px rgba(0, 102, 204, 0.5);
}

.color-palette {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.color-option {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.color-option.selected {
    border-color: var(--text-color);
}

button {
    padding: 12px 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: var(--button-hover-color);
}

.social-media-entry {
    margin-bottom: 16px;
    font-size: 14px;
    text-align: left;
}

.social-media-entry input {
    margin-right: 8px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: calc(100% - 50px);
}

@media (max-width: 600px) {
    .container {
        width: 100%;
        padding: 20px;
    }

    input,
    textarea,
    select,
    button {
        width: 100%;
        margin-bottom: 12px;
    }
}
