body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

h1, h2 {
    color: #46bbeb;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.section {
    margin-bottom: 20px;
}

.highlight {
    background-color: #f1f1f1;
    padding: 10px;
    border-left: 3px solid #46bbeb;
}

#preview-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 20px auto;
    overflow: hidden;
    border: 2px solid #46bbeb;
    border-radius: 5px;
}

#preview-image, #preview-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#preview-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    color: #46bbeb;
    text-align: center;
}

.frames {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

.frames img {
    width: 80px;
    height: 80px;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.frames img.active {
    border-color: #46bbeb;
}

input[type="file"], button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button {
    background-color: #46bbeb;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #1a1349;
}

.elegant-link {
    color: #46bbeb;
    text-decoration: none;
    border-bottom: 1px solid #46bbeb;
    transition: all 0.3s ease;
}

.elegant-link:hover {
    color: #1a1349;
    border-bottom-color: #1a1349;
}

.et-social-icons {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

.et-social-icons li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.et-social-icons .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px; /* Adjust size as needed */
    color: #4267B2; /* Facebook Blue */
}

.et-social-icons .icon i {
    margin-right: 8px; /* Space between icon and text */
}
