/* ===== VISIT DETAILS ===== */
.visit-details-section {
    margin-top: 30px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.visit-details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.visit-details-header h3 {
    margin: 0;
}

/* ===== DATA PANELS ===== */
.pos-details-panel, 
.visit-history-panel, 
.visit-data-panel {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 15px;
}

.pos-details-panel h4, 
.visit-history-panel h4, 
.visit-data-panel h4 {
    margin-top: 0;
    color: #4CAF50;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.pos-details-grid, 
.visit-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.detail-item {
    margin-bottom: 10px;
}

.detail-label {
    font-weight: bold;
    display: inline-block;
    min-width: 120px;
}

/* ===== VISIT COMMENTS ===== */
.visit-comments-section {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}

.comment-section {
    margin-bottom: 15px;
}

.comment-section h5 {
    margin-top: 0;
    margin-bottom: 5px;
    color: #555;
}

.comment-text {
    padding: 10px;
    background-color: #f9f9f9;
    border-radius: 4px;
    min-height: 60px;
    white-space: pre-wrap;
}