.about-me-summ.clearfix {
    padding-top: 1.5em;
    padding-bottom: 5em;
}

/* .about-me-summ .container {
        max-width: 100%;
        padding-left: 2rem;
        padding-right: 2rem;
    } */

@media (max-width: 768px) {
    .about-me-summ .container {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 480px) {
    .about-me-summ .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5em;
}

body.dark-mode .page-title {
    color: #e8e8e8;
}

.app-branding-section {
    text-align: center;
    padding: 2em 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
}

.app-branding-logo {
    display: flex;
    justify-content: center;
}

.app-branding-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.app-branding-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: #000;
}

.app-branding-version {
    font-size: 0.95rem;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
}

body.dark-mode .app-branding-title {
    color: #ffffff;
}

body.dark-mode .app-branding-version {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 480px) {
    .app-branding-section {
        padding: 1.5em 0;
    }

    .app-branding-icon {
        width: 100px;
        height: 100px;
    }

    .app-branding-title {
        font-size: 1.5rem;
    }

    .app-branding-version {
        font-size: 0.9rem;
    }
}


.list-group {
    gap: 8px;
    display: flex;
    flex-direction: column;
}

.list-group-item {
    padding: 18px 24px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #ffffff;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.list-group-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
    border-color: rgba(0, 0, 0, 0.15);
}

.list-group-item .d-flex {
    align-items: center;
    width: 100%;
}

.lg-menu {
    margin: 0 !important;
    font-size: 1.05rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 16px;
}

.lg-menu i {
    font-size: 1.3rem;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.dark-mode .list-group-item {
    background: #1c1f2b;
    border: 1px solid #2b2b2b33;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.233), 0 4px 12px rgba(0, 0, 0, 0.1);
}

body.dark-mode .list-group-item:hover {
    background: #334250;
    border-color: rgba(255, 255, 255, 0.15);
    border: 1px solid #2b2b2b33;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.233), 0 4px 12px rgba(0, 0, 0, 0.1);
}

body.dark-mode .lg-menu {
    color: #e8e8e8;
}

body.dark-mode .alert-warning p {
    color: #ffda6a;
    font-size: 16px;
    overflow-wrap: break-word;
    line-height: 1.7;
    margin-bottom: 0rem !important;
}

.list-group>div {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 8px 0;
}

body.dark-mode .list-group>div {
    background: rgba(255, 255, 255, 0.1);
}

.other-apps-heading {
    font-size: 1rem;
    font-weight: 600;
    color: #393e53;
    margin-bottom: 1.2em;
    margin-top: 0;
    text-transform: none;
    letter-spacing: 0;
}

body.dark-mode .other-apps-heading {
    color: #666d88;
}

.other-apps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 2em;
    width: 100%;
}

.other-apps-card {
    background: rgb(255, 255, 255);
    border: 2px solid #d5d5d5;
    border-radius: 18px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.other-apps-card:hover {
    background: #d8e6f3;
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.other-apps-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    flex-shrink: 0;
}

.other-apps-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.other-apps-name {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: #000;
}

.other-apps-chevron {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 2px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.other-apps-chevron i {
    font-size: 1.1rem;
    color: rgba(0, 0, 0, 0.6);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.other-apps-chevron:hover i {
    color: rgba(0, 0, 0, 0.9);
}

body.dark-mode .other-apps-chevron i {
    font-size: 1.1rem;
    color: rgba(232, 232, 232, 0.6);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.dark-mode .other-apps-chevron:hover i {
    color: rgba(232, 232, 232, 0.9);
}

body.dark-mode .other-apps-card {
    background: rgba(28, 31, 43, 0.5);
    border: 2px solid #393e53;
}

body.dark-mode .other-apps-card:hover {
    background: #334250;
    border-color: rgba(255, 255, 255, 0.15);
}

body.dark-mode .other-apps-name {
    color: #e8e8e8;
}

@media (max-width: 480px) {
    .other-apps-heading {
        font-size: 0.95rem;
    }

    .other-apps-card {
        padding: 14px 16px;
    }

    .other-apps-name {
        font-size: 1rem;
    }
}

.footer {
    display: none;
}

@media (max-width: 768px) {
    .list-group-item {
        padding: 15px 20px;
    }

    .lg-menu {
        font-size: 1rem;
    }

    .lg-menu i {
        font-size: 1.2rem;
        min-width: 26px;
    }
}

@media (max-width: 480px) {
    .list-group {
        gap: 12px;
    }

    .list-group-item {
        padding: 14px 18px;
    }

    .lg-menu {
        font-size: 0.95rem;
    }

    .lg-menu i {
        font-size: 1.1rem;
        min-width: 24px;
    }
}

