/* Yorum kutusu butonu */
#medicom-comment-toggle {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: #0d6efd;
    color: white;
    padding: 14px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: 0.2s;
    border: none;
}

#medicom-comment-toggle:hover {
    background: #0b5ed7;
}

/* Yorum paneli */
#medicom-comment-box {
    position: fixed;
    right: 25px;
    bottom: 90px;
    width: 350px;
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    display: none;
    z-index: 9999;
    animation: medicomFade 0.3s ease;
}

@keyframes medicomFade {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

#medicom-comment-box h3 {
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

/* Input alanları */
.medicom-field {
    margin-bottom: 12px;
}

.medicom-field label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.medicom-field input,
.medicom-field textarea {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.medicom-field textarea {
    height: 90px;
    resize: none;
}

/* Gönderme Butonu */
#medicom-comment-submit {
    width: 100%;
    background: #198754;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

#medicom-comment-submit:hover {
    background: #157347;
}

/* Gönderildi mesajı */
#medicom-comment-success {
    display: none;
    background: #d1e7dd;
    color: #0f5132;
    padding: 12px;
    border-radius: 8px;
    margin-top: 10px;
    font-weight: 600;
    border: 1px solid #badbcc;
}
