/* Style the profile picture URL input on the form */
.gform_wrapper .gfield input#input_20 {
    border: 2px solid #ccc;
    border-radius: 50%; /* Makes the input circular */
    width: 100px; /* Adjust size as needed */
    height: 100px; /* Match width for perfect circle */
    padding: 10px; /* Inner spacing */
    box-sizing: border-box; /* Include padding in width/height */
    text-align: center; /* Center the text */
    font-size: 14px; /* Adjust text size */
    background-color: #f9f9f9; /* Light background */
    transition: border-color 0.3s; /* Smooth hover effect */
}

.gform_wrapper .gfield input#input_20:focus {
    border-color: #0073aa; /* Highlight on focus */
    outline: none; /* Remove default outline */
}

.gform_wrapper .gfield input#input_20::placeholder {
    color: #888; /* Placeholder color */
    text-align: center; /* Center placeholder text */
}

/* Ensure the label and field are styled together */
.gform_wrapper .gfield label[for="input_20"] {
    display: block;
    text-align: center;
    margin-bottom: 5px;
}

/* Responsive adjustment */
@media (max-width: 600px) {
    .gform_wrapper .gfield input#input_20 {
        width: 80px;
        height: 80px;
        font-size: 12px;
    }
}

/* Existing styles (keep these if already present) */
/* Comment Modal Container */
.comment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Modal Content Area */
.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Close Button */
.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    line-height: 1;
}

/* Comment Section */
.comment-section {
    margin-bottom: 20px;
}

.comment-section h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.comment-item {
    display: flex;
    margin-bottom: 15px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 8px;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.comment-details {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.comment-header strong {
    color: #000;
}

.comment-time {
    color: #888;
    font-size: 12px;
}

.comment-text {
    margin: 5px 0;
    color: #444;
}

.comment-actions {
    display: flex;
    gap: 10px;
}

.like-comment {
    background: none;
    border: none;
    color: #0073aa;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.like-comment:hover {
    color: #005d87;
}

.comment-input {
    margin-top: 20px;
}

.comment-input h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.comment-input textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
    margin-bottom: 10px;
}

.comment-input .submit-comment {
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.comment-input .submit-comment:hover {
    background-color: #005d87;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .modal-content {
        width: 90%;
        padding: 15px;
    }

    .comment-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .comment-avatar {
        margin-bottom: 10px;
    }
}