/* layout.css - Estructura y Disposición */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body::-webkit-scrollbar,
*::-webkit-scrollbar {
    width: 3px;
    height: 2px;
}

body.modal-open {
    overflow: hidden;
}

a {
    display: inline-block; /* Comportamiento de bloque para enlaces */
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.app-container {
    display: flex;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.sidebar {
    width: 260px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
    transform: translateX(-100%);
}

.app-container.sidebar-active .sidebar {
    transform: translateX(0);
}

.sidebar-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.sidebar-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-logo-icon {
    height: 50px;
    width: 50px;
}

.sidebar-nav {
    flex-grow: 1;
}

.nav-item-header {
    margin-top: 20px;
    margin-bottom: 8px;
    padding-left: 12px;
}

.nav-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-item a {
    display: block;
    padding: 10px 12px;
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 20px;
}

.login-link-sidebar {
    display: block;
    padding: 10px 12px;
    text-align: center;
}

.main-content-wrapper {
    flex-grow: 1;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.app-container.sidebar-active .main-content-wrapper {
    padding-left: 260px;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    height: 65px;
    position: sticky;
    top: 0;
    z-index: 900;
}

.sidebar-toggle-button {
    padding: 8px;
    margin-right: 16px;
}

.sidebar-toggle-button svg {
    display: block;
    width: 18.5px;
    height: 18.5px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-search-button {
    padding: 8px;
}

.header-search-button svg {
    display: block;
}

.login-button {
    padding: 8px 18px;
}

.main-content-area {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 0 24px;
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 60px;
    flex-grow: 1;
    min-height: calc(100vh - 65px - 60px);
    position: relative;
}

.hero-title {
    margin-bottom: 30px;
    max-width: 700px;
}

.hero-title span {
    margin-bottom: 30px;
    max-width: 700px;
}

.luminous-form {
    width: 100%;
    max-width: 720px;
    margin-bottom: 24px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 4px;
}

.input-wrapper::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    z-index: -1;
    pointer-events: none;
}

.luminous-input {
    flex-grow: 5;
    padding: 16px 20px;
}

.luminous-submit-button {
    padding: 10px;
    margin-right: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.luminous-submit-button svg {
    width: 20px;
    height: 20px;
}

.suggestion-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.chip {
    padding: 8px 16px;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: auto;
    padding-bottom: 30px;
}

.scroll-indicator span {
    margin-bottom: 8px;
}

.content-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.content-section h2 {
    margin-bottom: 20px;
}

.floating-action-button {
    position: fixed;
    bottom: 6px;
    right: 30px;
    left: 30px;
    margin: auto;
    padding: 7px 1px;
    max-width: 18%;
    z-index: 950;
    visibility: hidden;
    transform: translateY(20px);
}

.floating-action-button::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    padding: 2px;
    z-index: -1;
    pointer-events: none;
}

.floating-action-button.visible {
    visibility: visible;
    transform: translateY(0);
}

.news-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.news-grid {
    align-items: center;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.news-card-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-card-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-card-title {
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-card-date {
    margin-bottom: 16px;
}

.news-card-link {
    margin-top: auto;
    align-self: flex-start;
}

#nosotros-section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    margin-bottom: 30px;
}

#nosotros-section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 200px;
    height: 3px;
}

.nosotros-content-wrapper {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
}

.nosotros-image-layout {
    display: flex;
    gap: 20px;
    flex: 1;
    min-width: 0;
}

.nosotros-large-image {
    flex: 2;
    min-width: 0;
}

.nosotros-large-image img {
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: cover;
}

.nosotros-text-content {
    flex: 1.5;
    padding-top: 10px;
    min-width: 0;
}

.nosotros-text-content h3 {
    margin-bottom: 15px;
}

.nosotros-text-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.button-primary {
    display: inline-block;
    padding: 12px 25px;
    text-align: center;
    margin-top: 10px;
}

.luminousai-section .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.luminousai-content-wrapper {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
}

.luminousai-text-content {
    flex: 1.5;
    padding-top: 10px;
    min-width: 0;
}

.luminousai-text-content h3 {
    margin-bottom: 15px;
}

.luminousai-text-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.luminousai-image-layout {
    display: flex;
    gap: 20px;
    flex: 1;
    min-width: 0;
}

.luminousai-large-image {
    flex: 2;
    min-width: 0;
}

.luminousai-large-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
}

.educme-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.educme-content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.educme-text-left,
.educme-text-right {
    flex: 1;
    min-width: 0;
}

.educme-text-left h3,
.educme-text-right h3 {
    margin-bottom: 15px;
}

.educme-text-left p,
.educme-text-right p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.educme-text-left ul,
.educme-text-right ul {
    list-style: disc;
    padding-left: 20px;
}

.educme-text-left ul li,
.educme-text-right ul li {
    margin-bottom: 8px;
}

.educme-image-center {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-width: 0;
}

.educme-main-image img {
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: cover;
}

.educme-cta-container {
    text-align: center;
    margin-top: 20px;
}

.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 2000;
    visibility: hidden;
    padding-top: 10vh;
}

.search-modal.active {
    visibility: visible;
}

.search-modal-content {
    padding: 28px 32px;
    width: 90%;
    max-width: 680px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.search-modal.active .search-modal-content {
    transform: scale(1) translateY(0);
}

.search-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
}

.search-modal-logo {
    height: 30px;
    width: auto;
}

.search-modal-close-button {
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-modal-close-button svg {
    width: 22px;
    height: 22px;
}

.search-modal-title {
    text-align: left;
    margin-bottom: 20px;
}

.modal-search-form {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    position: relative;
}

.modal-search-input {
    flex-grow: 1;
    padding: 14px 20px 14px 50px;
}

.modal-search-form svg.search-icon-input {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.modal-search-submit {
    display: none;
}

.search-modal-results {
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 8px;
    margin-right: -8px;
    position: relative;
    min-height: 150px;
}

.search-modal-result-item {
    display: block;
    padding: 12px 15px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.search-modal-result-item:last-child {
    margin-bottom: 0;
}

.search-modal-result-item .result-type-label {
    display: inline-block;
    padding: 2px 6px;
    margin-right: 8px;
}

.search-modal-no-results {
    text-align: center;
    padding: 30px 0;
}

.search-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    visibility: hidden;
}

.search-loading-overlay.visible {
    visibility: visible;
}

.search-spinner {
    width: 40px;
    height: 40px;
}

.api-docs-footer {
    padding: 40px 25px 30px;
    margin-top: 50px;
}

.footer-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 30px auto;
}

.footer-column h4 {
    margin-bottom: 15px;
}

.footer-column ul {
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-social-copyright {
    text-align: center;
    padding-top: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-social-links {
    margin-bottom: 15px;
}

.footer-social-links a {
    margin: 0 12px;
    display: inline-block;
}

.footer-social-links i[data-lucide] {
    width: 22px;
    height: 22px;
}

@media (max-width: 768px) {
    .main-header,
    .main-content-area {
        padding-left: 20px;
        padding-right: 20px;
    }
    .floating-action-button {
        bottom: 20px;
        right: 20px;
        left: 20px;
        max-width: none;
        padding: 12px 20px;
    }
    .news-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    .news-section .section-title {
        margin-bottom: 30px;
    }
    .search-modal-content {
        padding: 25px 20px;
        max-height: 85vh;
    }
    .modal-search-form {
        flex-direction: column;
    }
    .modal-search-submit {
        justify-content: center;
    }
    .search-modal-logo {
        top: 15px;
        left: 15px;
        height: 30px;
    }
}

@media (max-width: 1024px) {
    .nosotros-content-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .nosotros-image-layout {
        flex-direction: column;
        width: 100%;
        max-width: 700px;
        align-items: center;
    }
    .nosotros-large-image {
        width: 100%;
        margin-bottom: 20px;
    }
    .nosotros-large-image img {
        max-height: 400px;
    }
    .nosotros-text-content {
        width: 100%;
        max-width: 700px;
        padding-top: 30px;
        text-align: center;
    }
    .nosotros-section .section-title,
    .nosotros-text-content h3 {
        text-align: center;
    }
    .luminousai-content-wrapper {
        flex-direction: column-reverse;
        align-items: center;
    }
    .luminousai-image-layout {
        flex-direction: column;
        width: 100%;
        max-width: 700px;
        align-items: center;
        margin-bottom: 30px;
    }
    .luminousai-large-image {
        width: 100%;
        margin-bottom: 20px;
    }
    .luminousai-large-image img {
        max-height: 400px;
    }
    .luminousai-text-content {
        width: 100%;
        max-width: 700px;
        padding-top: 0;
        text-align: center;
    }
    .luminousai-section .section-title,
    .luminousai-text-content h3 {
        text-align: center;
    }
    .educme-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    .educme-text-left,
    .educme-text-right {
        text-align: center;
    }
    .educme-text-left ul,
    .educme-text-right ul {
        display: inline-block;
        text-align: left;
        margin: 0 auto;
    }
    .educme-image-center {
        order: -1;
        flex: 1;
        width: 100%;
        max-width: 450px;
    }
    .educme-main-image img {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .nosotros-image-layout {
        gap: 15px;
    }
    .button-primary {
        padding: 10px 20px;
    }
    .luminousai-image-layout {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .suggestion-chips {
        gap: 8px;
    }
    .chip {
        padding: 6px 12px;
    }
    .sidebar {
        width: 240px;
    }
    .app-container.sidebar-active .main-content-wrapper {
        padding-left: 240px;
    }
    .main-header {
        padding-left: 16px;
        padding-right: 16px;
    }
    .main-content-area {
        padding-left: 0;
        padding-right: 0;
    }
    .hero-section,
    .content-section {
        padding-left: 16px;
        padding-right: 16px;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }
}

.header-profile-pic {
    width: 36px;
    height: 36px;
    cursor: pointer;
    margin-left: 12px;
}

.profile-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.button-logout {
    padding: 6px 12px;
    cursor: pointer;
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 20px;
}

.sidebar-footer-profile-card {
    display: flex;
    align-items: center;
    padding: 10px 0;
    gap: 12px;
}

.sidebar-footer-profile-pic {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.sidebar-footer-user-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    flex-grow: 1;
}

.sidebar-footer-user-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar-footer-user-email {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.button-logout-sidebar-footer {
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.button-logout-sidebar-footer svg {
    width: 18px;
    height: 18px;
}

.sidebar-footer .login-link-sidebar[style*="display: none"] {
    display: none !important;
}

.header-profile-pic {
    width: 36px;
    height: 36px;
    cursor: pointer;
    margin-left: 12px;
}

.profile-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-footer-ip-info {
    margin-top: 5px;
    line-height: 1.5;
    text-align: left;
}

.toggle-ip-visibility {
    padding: 0 5px;
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
}

.toggle-ip-visibility .eye-icon {
    width: 14px;
    height: 14px;
}

.ip-address-value {
    margin-left: 4px;
}

.ip-address-value.hidden {
    display: none;
}

.gradient-text {
    display: inline-block;
}

.login-button.is-loading,
.login-link-sidebar.is-loading {
    position: relative;
    overflow: hidden;
    cursor: default;
    pointer-events: none;
}

.login-button.is-loading::before,
.login-link-sidebar.is-loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
}

.login-button.is-loading span,
.login-link-sidebar.is-loading span {
    visibility: hidden;
}

.header-actions .profile-container {
    min-width: 36px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-footer .sidebar-footer-profile-card {
    min-height: 50px;
    display: flex;
    align-items: center;
}

.product-showcase {
    padding: 25px 20px;
    margin-bottom: 40px;
}

.product-header {
    text-align: center;
    margin-bottom: 25px;
}

.product-header .section-title {
    margin-bottom: 8px;
}

.product-subtitle {
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.product-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    align-items: center;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .product-content-grid {
        grid-template-columns: 1fr 1.5fr;
    }
    .product-content-grid.reverse-grid-on-mobile {
        grid-template-columns: 1.5fr 1fr;
    }
    .product-content-grid.reverse-grid-on-mobile .product-image-container {
        order: 1;
    }
    .product-content-grid.reverse-grid-on-mobile .product-core-description {
        order: 0;
    }
}

.product-image-container.main-product-image {
    text-align: center;
}

.product-image-container.main-product-image img {
    max-width: 100%;
    width: auto;
    max-height: 280px;
    object-fit: contain;
}

.product-core-description p {
    line-height: 1.65;
    margin-bottom: 12px;
}

.product-core-description p:last-child {
    margin-bottom: 0;
}

.product-main-content {
    margin-top: 25px;
    padding-top: 20px;
}

.product-features-compact h3 {
    margin-bottom: 20px;
    text-align: center;
}

.features-compact-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.features-compact-list.two-columns {
    display: grid;
    gap: 15px 25px;
}

@media (min-width: 600px) {
    .features-compact-list.two-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feature-compact-item {
    padding: 12px 0;
}

.feature-compact-icon-title {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.feature-compact-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    flex-shrink: 0;
}

.feature-compact-description {
    line-height: 1.55;
    padding-left: 30px;
}

.product-cta-section {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
}

.product-cta-section .button-primary,
.product-cta-section .button-secondary {
    margin: 8px;
    padding: 10px 22px;
}

.main-footer-bottom {
    text-align: center;
    padding: 35px 20px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .product-showcase {
        padding: 20px 15px;
    }
    .product-image-container.main-product-image img {
        max-height: 220px;
    }
    .feature-compact-description {
        padding-left: 28px;
    }
    .feature-compact-icon {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }
}

@media (max-width: 480px) {
    .features-compact-list.two-columns {
        grid-template-columns: 1fr;
    }
    .feature-compact-item {
        padding: 10px 0;
    }
    .product-cta-section .button-primary,
    .product-cta-section .button-secondary {
        width: calc(100% - 16px);
        display: block;
        box-sizing: border-box;
    }
}

.promo-modal {
    position: fixed;
    z-index: 2500;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
}

.promo-modal.active {
    visibility: visible;
}

.promo-modal-content {
    padding: 25px 30px;
    width: 90%;
    max-width: 480px;
    position: relative;
    text-align: center;
    transform: scale(0.95);
}

.promo-modal.active .promo-modal-content {
    transform: scale(1);
}

.promo-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    padding: 5px;
}

.promo-modal-icon-container {
    margin-bottom: 15px;
    line-height: 0;
}

.promo-modal-image {
    max-width: 300px;
    max-height: 300px;
    width: auto;
    height: auto;
    display: inline-block;
    object-fit: contain;
}

.promo-modal-title {
    margin-bottom: 12px;
}

.promo-modal-description {
    line-height: 1.6;
    margin-bottom: 25px;
}

.promo-modal-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.promo-button-decline,
.promo-button-accept {
    padding: 10px 20px;
    flex-grow: 1;
    max-width: 200px;
}

@media (max-width: 480px) {
    .promo-modal-content {
        padding: 20px 20px;
    }
    .promo-modal-actions {
        flex-direction: column;
        gap: 10px;
    }
    .promo-button-decline,
    .promo-button-accept {
        width: 100%;
        max-width: none;
    }
}

.suggestion-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    position: relative;
}

.chip-wrapper {
    position: relative;
    display: inline-block;
}

.chip {
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.chip-icon svg {
    width: 16px;
    height: 16px;
}

.chip-explanation-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px;
    width: 280px;
    z-index: 10;
    margin-top: 8px;
    max-height: 0;
    overflow: hidden;
}

.chip-wrapper.active .chip-explanation-panel {
    transform: translateX(-50%) translateY(0);
}

.chip-explanation-panel p {
    line-height: 1.5;
    margin: 0;
}

.profile-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1050;
}

.profile-modal.active {
    display: flex;
}

.profile-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.profile-modal-content {
    padding: 0;
    width: 90%;
    max-width: 380px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.profile-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
}

.profile-modal-title {
    margin: 0;
}

.profile-modal-close {
    padding: 5px;
}

.profile-modal-close svg {
    width: 22px;
    height: 22px;
}

.profile-modal-body {
    padding: 24px;
    text-align: center;
}

.profile-modal-user-info {
    margin-bottom: 25px;
}

.modal-profile-pic-large {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin: 0 auto 15px auto;
}

.modal-user-name {
    margin-bottom: 4px;
}

.modal-user-email {
    margin-bottom: 8px;
}

.modal-user-role {
    padding: 3px 8px;
    display: inline-block;
}

.profile-modal-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.profile-modal-nav li {
    margin-bottom: 10px;
}

.profile-modal-link {
    display: flex;
    align-items: center;
    padding: 10px 15px;
}

.profile-modal-link svg {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.profile-modal-footer {
    padding: 18px 24px;
    text-align: center;
}

.button-logout-modal {
    padding: 10px 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.button-primary svg {
    position: relative;
    top: 4px; /* Ajusta según necesites */
    height: 20px;
}
