/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f5dc 0%, #faf0e6 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8B4513;
    margin: 0;
    line-height: 1.2;
}

.tagline {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin: 0;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8B4513;
}

/* Filters Section */
.filters-section {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #e5e5e5;
    padding: 1.5rem 0;
    backdrop-filter: blur(10px);
}

.filter-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.filter-row:last-child {
    margin-bottom: 0;
}

.search-box {
    flex: 1;
    max-width: 400px;
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #8B4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.filter-options {
    display: flex;
    gap: 1rem;
}

.filter-select {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    min-width: 150px;
    transition: border-color 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: #8B4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.view-toggle {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    padding: 0.75rem 1.5rem;
    border: 1px solid #ddd;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.view-btn.active {
    background: #8B4513;
    color: white;
    border-color: #8B4513;
}

.view-btn:hover {
    background: #f0f0f0;
}

.view-btn.active:hover {
    background: #7a3d10;
}

/* Location Controls */
.filter-actions {
    display: flex;
    align-items: center;
}

.location-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.5rem;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.location-btn:hover {
    background: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.location-btn:active {
    transform: translateY(0);
}

.location-icon {
    font-size: 1rem;
}

/* Main Content */
.main-content {
    padding: 2rem 0;
}

/* Map Container */
.map-container {
    display: flex;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map {
    flex: 1;
    height: 100%;
    position: relative;
    min-height: 400px;
}

.side-panel {
    width: 300px;
    background: white;
    border-left: 1px solid #e5e5e5;
    overflow-y: auto;
}

.side-panel h3 {
    padding: 1rem;
    border-bottom: 1px solid #e5e5e5;
    background: #f8f8f8;
    margin: 0;
}

.spots-list {
    padding: 0;
}

.spot-item {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.spot-item:hover {
    background: #f8f8f8;
}

.spot-item h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.spot-city {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.spot-distance {
    color: #007bff;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.spot-score {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.score {
    font-weight: bold;
    color: #8B4513;
    font-size: 1.1rem;
}

.score-label {
    color: #666;
    font-size: 0.9rem;
}

/* List Container */
.list-container {
    padding: 1rem 0;
}

.spots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.spot-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.spot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.spot-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.spot-header h3 {
    color: #333;
    margin: 0;
    flex: 1;
}

.spot-location {
    color: #666;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spot-address {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.spot-description {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.spot-scores {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.score-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
}

.score-label {
    color: #666;
}

.score-value {
    font-weight: 500;
    color: #8B4513;
}

.spot-website {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #8B4513;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.spot-website:hover {
    background: #7a3d10;
}

/* Footer */
.footer {
    background: rgba(255, 255, 255, 0.9);
    border-top: 1px solid #e5e5e5;
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-list {
        gap: 1rem;
    }
    
    .filter-row {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .search-box {
        max-width: none;
    }
    
    .filter-options {
        justify-content: center;
    }
    
    .filter-actions {
        justify-content: center;
    }
    
    .location-btn {
        width: 100%;
        justify-content: center;
    }
    
    .view-toggle {
        justify-content: center;
    }
    
    .map-container {
        flex-direction: column;
        height: auto;
    }
    
    .side-panel {
        width: 100%;
        height: 300px;
    }
    
    .spots-grid {
        grid-template-columns: 1fr;
    }
    
    .spot-scores {
        grid-template-columns: 1fr;
    }
}

/* Map markers */
.leaflet-marker-icon {
    background: #8B4513;
    border: 2px solid white;
    border-radius: 50%;
    width: 20px !important;
    height: 20px !important;
    margin-left: -10px !important;
    margin-top: -10px !important;
}

.leaflet-popup-content {
    font-family: inherit;
    max-width: 300px;
    word-wrap: break-word;
    padding: 0.5rem;
}

.leaflet-popup-content h3 {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.1rem;
}

.leaflet-popup-content p {
    margin: 0.25rem 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.leaflet-popup-content a {
    color: #8B4513;
    text-decoration: none;
    font-weight: 500;
}

.leaflet-popup-content a:hover {
    text-decoration: underline;
}

.details-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #8B4513;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.details-link:hover {
    background: #7a3d10;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(139, 69, 19, 0.3);
}

/* Fix popup positioning */
.leaflet-popup {
    max-width: 320px;
}

.leaflet-popup-tip {
    background: white;
}

/* Page Content Styles */
.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.page-content h1 {
    color: #333;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
}

.page-content h2 {
    color: #8B4513;
    margin: 2rem 0 1rem 0;
    font-size: 1.8rem;
}

.page-content h3 {
    color: #333;
    margin: 1.5rem 0 0.5rem 0;
    font-size: 1.3rem;
}

.page-content p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
}

/* About Page Styles */
.about-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.criteria-item {
    padding: 1.5rem;
    background: #f8f8f8;
    border-radius: 8px;
    border-left: 4px solid #8B4513;
}

.criteria-item h3 {
    color: #8B4513;
    margin-bottom: 0.5rem;
}

/* Scoring Page Styles */
.scoring-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.criteria-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.score-breakdown {
    margin-top: 1.5rem;
}

.score-level {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.score-level:last-child {
    border-bottom: none;
}

.score-number {
    background: #8B4513;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.score-description {
    color: #555;
}

.overall-score-section {
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.score-ranges {
    margin-top: 1.5rem;
}

.score-range {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.score-range:last-child {
    border-bottom: none;
}

.range {
    background: #8B4513;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: bold;
    margin-right: 1rem;
    min-width: 100px;
    text-align: center;
}

.range-description {
    color: #555;
}

/* Suggest Page Styles */
.suggest-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.suggestion-form {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: #8B4513;
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: #666;
    font-size: 0.9rem;
}

.submit-btn {
    background: #8B4513;
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background: #7a3d10;
}

.message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

.message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.suggestion-guidelines {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.suggestion-guidelines ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.suggestion-guidelines li {
    margin-bottom: 0.5rem;
    color: #555;
}

/* Blog Page Styles */
.blog-intro {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.blog-posts {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-post {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-post h2 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.post-date, .post-category {
    background: #f0f0f0;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    color: #8B4513;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #7a3d10;
}

.blog-sidebar {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-section h3 {
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.category-list, .recent-posts {
    list-style: none;
    padding: 0;
}

.category-list li, .recent-posts li {
    margin-bottom: 0.5rem;
}

.category-list a, .recent-posts a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-list a:hover, .recent-posts a:hover {
    color: #8B4513;
}

/* User Location Marker */
.user-location-marker {
    background: transparent;
    border: none;
}

.user-dot {
    width: 20px;
    height: 20px;
    background: #007bff;
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.4);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Location Loading Spinner */
.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.location-loading {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

/* Error and Success Messages */
.error-message, .success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-weight: 500;
    max-width: 300px;
    word-wrap: break-word;
}

.error-message {
    background: #ff4444;
    color: white;
}

.success-message {
    background: #4CAF50;
    color: white;
}

/* Details Page Styles */
.details-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.back-section {
    margin-bottom: 2rem;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.75rem 1.5rem;
    background: #f8f8f8;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #e8e8e8;
    transform: translateX(-2px);
}

.back-icon {
    font-size: 1.2rem;
}

.spot-header-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    gap: 2rem;
}

.spot-info {
    flex: 1;
}

.spot-title h1 {
    font-size: 2.5rem;
    color: #333;
    margin: 0 0 0.5rem 0;
}

.spot-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.location-icon {
    font-size: 1.2rem;
}

.spot-details {
    margin-top: 1rem;
}

.spot-description {
    color: #555;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.spot-address {
    color: #666;
    font-size: 1rem;
    margin: 0 0 1rem 0;
    font-weight: 500;
}

.spot-overall-score {
    text-align: center;
}

.score-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B4513, #A0522D);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    margin-bottom: 0.5rem;
}

.score-number {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.score-max {
    font-size: 0.9rem;
    opacity: 0.8;
}

.score-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.details-left, .details-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.detail-section h2 {
    color: #8B4513;
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
}

.detail-section p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.address {
    font-size: 1.1rem;
    margin-bottom: 1rem !important;
}

.website-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #8B4513;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.website-btn:hover {
    background: #7a3d10;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

.spot-map {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.chart-container {
    height: 300px;
    position: relative;
}



/* Mobile Responsiveness for Details Page */
@media (max-width: 768px) {
    .spot-header-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .spot-title h1 {
        font-size: 2rem;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Distance sorting styles */
.distance-sort-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.distance-sort-notice .location-icon {
    font-size: 1.1rem;
}

.distance-sort-notice a {
    color: #007bff;
    text-decoration: underline;
    cursor: pointer;
}

.distance-sort-notice a:hover {
    color: #0056b3;
}



/* Custom Coffee Markers */
.coffee-marker {
    background: transparent;
    border: none;
    /* Ensure marker stays in place during zoom */
    transform-origin: center;
    will-change: transform;
}

/* Ensure Mapbox markers maintain position during zoom */
.mapboxgl-marker {
    transform-origin: center;
    will-change: transform;
}

/* Make markers scale with zoom */
.mapboxgl-marker svg {
    width: 30px !important;
    height: 30px !important;
}

/* Custom marker scaling */
.coffee-marker {
    transform-origin: center;
    will-change: transform;
    transition: transform 0.2s ease;
}

.coffee-icon {
    width: 30px;
    height: 30px;
    background: #8B4513;
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.coffee-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Popup Actions */
.popup-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.directions-btn {
    background: #28a745;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.directions-btn:hover {
    background: #218838;
}

/* Spot Actions for Details Page */
.spot-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.spot-actions .location-btn {
    background: #6c757d;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.spot-actions .location-btn:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

 