/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

/* Custom styles for success and danger alerts */
.alert {
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    font-size: 1rem;
    line-height: 1.5;
}

.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

/* Optional: Add custom hover effect */
.alert-success:hover,
.alert-danger:hover {
    opacity: 0.9;
    transition: opacity 0.3s ease-in-out;
}

/* Optional: Adjust font weight and alignment */
.alert {
    font-weight: 400;
    text-align: left;
}

/* Ensure proper spacing and responsiveness */
.alert {
    display: block;
    width: 100%;
    box-sizing: border-box;
}

/* Add a fade-in effect if desired */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Completely hide all toast notifications */
.toast,
.position-fixed {
    display: none !important;
}


.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.1);
    background-color: #fff;
}

.testimonial-card p {
    font-style: italic;
    overflow-wrap: break-word;
    line-height: 1.6;
    font-size: 1rem;
}

.testimonial-author {
    margin-top: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-meta {
    font-size: 0.75rem;
    color: #888;
}


