﻿.animated-width {
    width: 0%;
    transition: width 0.3s ease-in-out;
    overflow: hidden;
    white-space: nowrap;
}

.transform-slider {
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

    .transform-slider.open {
        transform: scaleX(1);
    }

.avatar-hover {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .avatar-hover:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }

.cursor-pointers {
    cursor: pointer;
}

.isPdf {
    font-size: 2.5rem;
}

.app-logo {
    max-width: 85px !important;
    max-height: 85px !important;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.CalendarByField {
    min-width: 150px !important;
    padding: 12px 16px;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}

.theme-card {
    border-radius: 16px !important;
    background-color: var(--card, #f8f9fa) !important;
    color: var(--text, #212529) !important;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.wh-15 {
    width: 15% !important;
    height: 15% !important;
}

.w-15 {
    width: 15% !important;
}

.h-15 {
    height: 15% !important;
}


/* Home Index View */

/*.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-item {
    display: flex;
}

.feature-box {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;*/
/*border: 1px solid #e9ecef;*/
/*border-radius: 0.75rem;
    padding: 2rem 1.5rem;
    text-align: center;*/
/*background: white;*/
/*box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    text-decoration: none;
}

.feature-box i {
    margin-bottom: 1.25rem;
    font-size: 2.5rem;
}

.feature-box h5 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-box p {
    flex: 1;
    margin: 0;
    color: #6c757d;
    line-height: 1.6;
    font-size: 0.95rem;
}

.feature-box.text-primary {
    border-top: 4px solid #0d6efd;
}

.feature-box.text-info {
    border-top: 4px solid #0dcaf0;
}

.feature-box.text-success {
    border-top: 4px solid #198754;
}

.feature-box.text-warning {
    border-top: 4px solid #ffc107;
}

.feature-box.text-danger {
    border-top: 4px solid #dc3545;
}*/
/* End of Home Index View*/
