.list-group-item a i {
    color: black !important;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin: 0;
    padding: 0;
}

.phone-container {
    max-width: 430px;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.list-group-item a {
    text-decoration: none;
}

.list-group-item a i {
    color: black !important;
}

body.profile {
    background-color: #6a3734;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body.profile .profile-section {
    color: white;
    font-size: 1.2em;
    margin-bottom: 15px;
    text-align: left;
}

body.profile .profile-section img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

body.profile .profile-section h1 {
    color: white;
    font-size: 2.5em;
    margin-bottom: 10px;
}

body.profile .profile-section p {
    color: white;
    font-size: 1.2em;
}

body.profile .options .nav-link {
    color: white !important;
}

body.profile .options .nav-link i {
    color: black !important;
}

.nav-link {
    color: white !important;
}


.nav-link i {
    color: black !important;
}

.list-group-item a i {
    color: black !important;
}


.list-group-item a {
    text-decoration: none;
}

.list-group-item a i {
    color: black !important;
}

body.homepage {
    background-color: #6a3734;
}

body.homepage .profile-section {
    color: white;
    font-size: 1.2em;
    margin-bottom: 15px;
    text-align: center;
    padding: 20px;
}

body.homepage .profile-section img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

body.homepage .profile-section h1 {
    color: white;
    font-size: 2.5em;
    margin-bottom: 10px;
}

body.homepage .profile-section p {
    color: white;
    font-size: 1.2em;
}

body.homepage .options {
    padding: 0 20px;
}

body.homepage .options .nav-link {
    color: white !important;
    padding: 15px 10px;
    font-size: 1.1em;
}

body.homepage .options .nav-link i {
    color: white !important;
    margin-right: 10px;
    font-size: 1.2em;
}

body.homepage .options .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

body.findcafe {
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.app-container {
    max-width: 430px;
    margin: 0 auto;
    height: 100vh;
    position: relative;
    background-color: #f5f5f5;
    overflow: hidden;
}

.header-section {
    position: relative;
    z-index: 1000;
    padding: 12px 16px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.95), rgba(255,255,255,0.8));
}

.location-text {
    font-size: 13px;
    color: #666;
}

.location-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.avatar-brown {
    background-color: #8B4513;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.avatar-img {
    background-image: url('https://i.pravatar.cc/150?img=33');
    background-size: cover;
}

.search-input {
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    padding: 10px 16px;
    font-size: 15px;
}

.map-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 380px;
    z-index: 1;
    background: linear-gradient(135deg, #e8e8e8 0%, #d5d5d5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cafe-list-section {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    background-color: #f0ebe5;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    padding: 20px 16px;
    max-height: 380px;
    overflow-y: auto;
    z-index: 1000;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.filter-btn {
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #d0d0d0;
    background-color: white;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
}

.filter-btn:hover {
    background-color: #f5f5f5;
}

.filter-btn.active {
    background-color: #333;
    color: white;
}

.cafe-card {
    min-width: 160px;
    background-color: white;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.cafe-card:hover {
    transform: translateY(-4px);
}

.cafe-image {
    width: 160px;
    height: 120px;
    object-fit: cover;
    display: block;
}

.cafe-info {
    padding: 12px;
}

.cafe-name {
    font-size: 15px;
    font-weight: 600;
    flex: 1;
}

.cafe-rating {
    display: flex;
    align-items: center;
    gap: 4px;
}

.cafe-type {
    font-size: 11px;
    color: #666;
    margin-bottom: 4px;
}

.cafe-reviews {
    font-size: 11px;
    color: #999;
}

.bottom-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: #c99a8a;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1001;
}

.nav-item-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    color: #8B6F5F;
    text-decoration: none;
}

.nav-item-bottom.active {
    color: #000;
}

.nav-item-bottom i {
    font-size: 24px;
}

.horizontal-scroll {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 10px;
}

.horizontal-scroll::-webkit-scrollbar {
    height: 4px;
}

.horizontal-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.horizontal-scroll::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

body.findcafe {
    background-color: #d9cfc1;
}

body.findcafe .phone-container {
    background-color: #d9cfc1;
}

/* Page Header */
.findcafe-header {
    text-align: center;
    padding: 60px 20px 20px;
    position: relative;
    z-index: 1;
}

.findcafe-header h1 {
    color: #8b4444;
    font-size: 28px;
    font-weight: 600;
    margin: 0;
}


.map-section {
    width: 90%;
    margin: 0 auto 20px;
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.map-section img {
    width: 100%;
    height: auto;
    display: block;
    height: 550px;
}

.findcafe h1 {
    text-align: center;
    color:white;
}
body.cafepage {
            background-color: #f5f5f5;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }

        body.cafepage .phone-container {
            max-width: 430px;
            margin: 0 auto;
            background: white;
            min-height: 100vh;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
            overflow: hidden;
            position: relative;
        }

        .cafe-header-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .cafe-content {
            padding: 20px;
            padding-bottom: 80px;
        }

        .cafe-title {
            font-size: 32px;
            font-weight: 700;
            color: #8B6F47;
            margin-bottom: 5px;
        }

        .cafe-rating-section {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
        }

        .rating-star {
            color: #FFD700;
            font-size: 18px;
        }

        .rating-number {
            font-size: 16px;
            font-weight: 600;
        }

        .cafe-address {
            color: #8B6F47;
            font-size: 14px;
            font-style: italic;
            margin-bottom: 20px;
        }

        .cafe-description {
            color: #333;
            line-height: 1.6;
            margin-bottom: 15px;
            font-size: 14px;
        }

        .read-more {
            color: #8B6F47;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
        }

        .hours-section {
            margin: 25px 0;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 8px;
        }

        .hours-title {
            font-weight: 700;
            color: #333;
            margin-bottom: 5px;
        }

        .hours-status {
            color: #198754;
            font-weight: 600;
        }

        .hours-time {
            color: #666;
            font-size: 14px;
        }

        .cafe-photos-section {
            margin: 25px 0;
        }

        .section-title {
            font-weight: 700;
            font-size: 18px;
            margin-bottom: 15px;
        }

        .photos-grid {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding-bottom: 10px;
        }

        .photo-item {
            flex-shrink: 0;
            width: 200px;
            height: 250px;
            border-radius: 8px;
            overflow: hidden;
        }

        .photo-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 430px;
            background: white;
            border-top: 1px solid #e0e0e0;
            display: flex;
            justify-content: space-around;
            padding: 12px 0;
            z-index: 100;
        }

        .nav-item-bottom {
            color: #666;
            font-size: 24px;
            text-decoration: none;
            transition: color 0.3s;
        }