.elementor-782 .elementor-element.elementor-element-0a12cc2{--display:flex;}.elementor-782 .elementor-element.elementor-element-1a547e3 > .elementor-widget-container{padding:20px 20px 20px 20px;}.elementor-782 .elementor-element.elementor-element-73fd393{--display:flex;}.elementor-782 .elementor-element.elementor-element-673bfd8 > .elementor-widget-container{padding:20px 20px 20px 20px;}.elementor-782 .elementor-element.elementor-element-673bfd8.elementor-element{--align-self:center;}@media(max-width:767px){.elementor-782 .elementor-element.elementor-element-1a547e3 > .elementor-widget-container{padding:20px 20px 20px 20px;}.elementor-782 .elementor-element.elementor-element-673bfd8 > .elementor-widget-container{padding:20px 20px 20px 20px;}}/* Start custom CSS for shortcode, class: .elementor-element-673bfd8 *//* Container for the entries */
.user-entries-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Style the unordered list */
.user-entries-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Each entry as a form row */
.user-entries-container li {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

/* Last entry doesn't need a bottom border */
.user-entries-container li:last-child {
    border-bottom: none;
}

/* Label styling */
.user-entries-container li::before {
    content: attr(data-label);
    font-weight: bold;
    color: #333;
    flex: 1 1 30%;
    min-width: 120px;
}

/* Value styling */
.user-entries-container li span {
    flex: 1 1 60%;
    color: #555;
}

/* Radio field styling */
.radio-field .radio-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #0073aa;
    background-color: #fff;
    margin-right: 8px;
    position: relative;
}

.radio-field .radio-icon::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #0073aa;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Image field styling */
.image-field img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    display: block;
}

/* File field styling */
.file-field a {
    color: #0073aa;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border: 1px solid #0073aa;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.file-field a:hover {
    background-color: #f1f1f1;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .user-entries-container li {
        flex-direction: column;
        align-items: flex-start;
    }
    .user-entries-container li::before,
    .user-entries-container li span {
        flex: 1 1 100%;
    }
    .image-field img {
        max-width: 100%;
    }
}

/* Optional: Add a title */
.user-entries-container h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #222;
    text-align: center;
}/* End custom CSS */