body {
}

/* Avatar Upload Styles */
.avatar-wrapper {
    display: inline-block;
}

.avatar-img {
    width: 80px;
    height: 80px;
}

.avatar-img-sm {
    width: 60px;
    height: 60px;
}

.avatar-initials {
    font-size: 1.5rem;
}

@media (min-width: 576px) {
    .avatar-img {
        width: 100px;
        height: 100px;
    }

    .avatar-initials {
        font-size: 2rem;
    }
}

@media (min-width: 992px) {
    .avatar-img {
        width: 120px;
        height: 120px;
    }
    .avatar-initials {
        font-size: 2.5rem;
    }
}

.avatar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.2s ease;
    cursor: pointer;
}

.avatar-editable:hover .avatar-overlay {
    opacity: 1;
}

.avatar-dropzone {
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.avatar-dropzone:hover {
    border-color: var(--bs-primary) !important;
    background-color: var(--bs-light);
}

/* Homepage Hero */
.hero-section {
    background: var(--fn-dark);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(216, 81, 81, 0.25) 0%, rgba(236, 114, 20, 0.01) 40%, transparent 70%);
    pointer-events: none;
}

.hero-title {
    line-height: 1.05;
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: auto;
    }
    .hero-title {
        font-size: 2.2rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-title {
        font-size: 3rem;
    }
}

/* Session block responsive layout */
@media (max-width: 991.98px) {
    .session-block .block-inputs {
        width: 100% !important;
    }
}
