/* Custom styles for Mindful Mentor app */

/* Card styling */
.card {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Rating stars styling */
.rating-container {
    direction: rtl;
    text-align: center;
}

.rating-container input {
    display: none;
}

.rating-container label {
    display: inline-block;
    cursor: pointer;
    font-size: 30px;
    color: #ccc;
    transition: color 0.2s;
}

.rating-container label:hover,
.rating-container label:hover ~ label,
.rating-container input:checked ~ label,
.rating-container label.active {
    color: #ffca3a;
}

/* Feedback card styling */
.feedback-card {
    border-left: 5px solid var(--bs-info);
    padding: 15px;
    margin-bottom: 20px;
}

.quote-text {
    font-style: italic;
    color: var(--bs-secondary);
}

.mindfulness-content {
    line-height: 1.6;
}

.mindfulness-content ol,
.mindfulness-content ul {
    padding-left: 1.5rem;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
}

.mindfulness-content p {
    margin-bottom: 0.75rem;
}

/* Profile image */
.profile-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* Custom button styling */
.btn-mindful {
    background-color: var(--bs-info);
    border-color: var(--bs-info);
    color: white;
}

.btn-mindful:hover {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

/* Chart container */
.chart-container {
    position: relative;
    height: 300px;
    width: 100%;
    margin-bottom: 30px;
}

/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

/* Rating labels */
.rating-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    font-size: 0.8rem;
    color: var(--bs-secondary);
}

.rating-labels span:first-child {
    text-align: left;
}

.rating-labels span:last-child {
    text-align: right;
}
