.weather-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    padding: 15px;
    font-family: 'Segoe UI', sans-serif;
    border: 1px solid #edf2f7;
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.user-info img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 12px;
    object-fit: cover;
}

.user-details b {
    color: #2d3748;
    display: block;
    font-size: 14px;
}

.user-details span {
    color: #a0aec0;
    font-size: 12px;
}

.comment-text {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.6;
    margin: 10px 0;
}

.shared-photo {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 10px;
    cursor: pointer;
}

/* Like Butonu ve Sayacı */
.action-area {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-top: 1px solid #f7fafc;
    padding-top: 10px;
}

.begen-btn {
    background: #ebf8ff;
    color: #3182ce;
    border: none;
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.begen-btn:hover { background: #bee3f8; }

/* Form Tasarımı */
.comment-form-container {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.comment-form-container textarea {
    width: 100%;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px;
    resize: none;
    font-family: inherit;
    box-sizing: border-box;
}

.hidden-fields { display: none; margin-top: 15px; }

.input-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.input-row input {
    flex: 1;
    min-width: 200px;
    padding: 10px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
}

.custom-file-upload {
    display: inline-block;
    padding: 8px 16px;
    background: #edf2f7;
    color: #4a5568;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    border: 1px dashed #cbd5e0;
    margin-bottom: 10px;
}

.submit-btn {
    background: #3182ce;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
}

#preview-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    display: none;
    margin-bottom: 10px;
}

.top-action {
    margin:15px 0;
}

.main-trigger {
    display: block !important;
    background: #ffffff !important;
    border: 2px dashed #3182ce !important;
    color: #3182ce !important;
    padding: 15px !important;
    font-size: 16px !important;
    text-align: center;
    font-weight: 600;
    transition: 0.3s;
}

.main-trigger:hover {
    background: #ebf8ff !important;
}

#preview-wrapper {
    position: relative;
    display: none;
    width: fit-content;
    margin-bottom: 15px;
}

#preview-img {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #3182ce;
}

#remove-img {
    position: absolute;
    top: -10px;
    right: -10px;
    color: #e53e3e;
    font-size: 20px;
    cursor: pointer;
    background: white;
    border-radius: 50%;
}
.yorum-foto {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
    border: 1px solid #ddd;
    transition: transform 0.2s;
}
.yorum-foto:hover { transform: scale(1.05); }

/* Balon (Modal) Stili */
.foto-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.8);
    align-items: center;
    justify-content: center;
}
.foto-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}