@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
body {
    font-family: Arial, sans-serif;
    background-color: #f0f2f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

h1 {
    color: #333;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
}

#comments-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.comment-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 320px; /* Adjusted width based on the image */
    padding: 15px; /* Slightly less padding */
    display: flex;
    flex-direction: column;
    box-sizing: border-box; /* Include padding in the width */
}

/* Style for the first row: consistent blue quote and text */
.first-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px; /* Space between the first row and the comment text */
}

.blue-quote-mark {
    color: #1877f2; /* Facebook blue */
    font-size: 3.5em; 
    font-weight: 900;
    line-height: 1;
    margin-right: 8px; 
    display: inline-block;
    vertical-align: top; /* Align to the top of the text */
}

.consistent-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.95em; /* Slightly smaller font for consistent text */
    color: #555; /* A bit lighter color */
    line-height: 1.3;
    flex-grow: 1; /* Allows text to take available space */
}

/* Style for the second row: extracted comment text */
.comment-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.2em;
    line-height: 1.5;
    color: #333;
    /* margin-bottom: 15px; */
}

/* Style for the third row: profile picture and name */
.comment-footer {
    font-family: 'Inter', sans-serif !important;
    display: flex;
    align-items: center;
    gap: 10px;
    /* margin-top: auto; */
    padding-top: 10px; /* Some padding above the footer */
}

.profile-picture {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #ddd;
    flex-shrink: 0; /* Prevent shrinking */
}

.profile-name {
    font-weight: bold;
    color: #333;
    font-size: 0.95em; /* Slightly smaller font for name */
}

#printButton, .upload-section, #loadCommentsButton, #jsonFileInput, #jsonFileInput::file-selector-button{
    font-family: 'Inter', sans-serif;
}