
/* General Form Styling */
.cuf-form {
    max-width: 600px;
    margin: auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.cuf-form p {
    margin-bottom: 15px;
}
.cuf-form input[type="text"],
.cuf-form input[type="email"],
.cuf-form textarea,
.cuf-form input[type="file"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}
.cuf-form textarea {
    resize: vertical;
}
.cuf-form input[type="submit"] {
    background-color: #0073aa;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}
.cuf-form input[type="submit"]:hover {
    background-color: #005f8d;
}

/* Member List Shortcode Display */
.member-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}
.member-item {
    width: 140px;
    text-align: center;
    padding: 10px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.member-pic img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #ccc;
    margin-bottom: 10px;
}

/* Responsive Table for Admin */
table.widefat {
    width: 100%;
    overflow-x: auto;
    display: block;
}
@media (max-width: 600px) {
    .cuf-form {
        padding: 15px;
    }
    .member-item {
        width: 100%;
        max-width: 300px;
    }
}
