/* Presná kópia Android dizajnu */
:root {
    --primary-color: #2E7D32;
    --primary-light: #E8F5E9;
    --bg-light: #F8F9FA;
    --text-dark: #1A1A1A;
    --text-muted: #757575;
}

body {
    background-color: #f0f2f5;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.navbar {
    padding: 1rem 0;
    transition: all 0.3s;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1b5e20 100%);
    color: white;
    padding: 4rem 0 6rem 0;
    margin-bottom: -4rem;
}

.booking-card {
    border-radius: 20px !important;
    border: none !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
    overflow: hidden;
}

.list-group-item {
    border: none;
    border-bottom: 1px solid #edf2f7;
    padding: 1.25rem 1.5rem;
    transition: all 0.2s;
    font-weight: 500;
}

.list-group-item:hover {
    background-color: var(--primary-light);
    color: var(--primary-color);
    padding-left: 2rem;
}

.list-group-item:last-child {
    border-bottom: none;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    letter-spacing: 0.1em;
    margin: 2rem 0 0.75rem 0.5rem;
    display: flex;
    align-items: center;
}

.section-label::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 16px;
    background-color: var(--primary-color);
    margin-right: 10px;
    border-radius: 2px;
}

/* Masér Card Styles */
.maser-item {
    display: flex;
    align-items: center;
    padding: 1rem !important;
    border-radius: 12px !important;
    margin-bottom: 8px;
    border: 1px solid #eee !important;
    transition: all 0.2s ease;
    background: white;
}

.maser-item:hover {
    border-color: var(--primary-color) !important;
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.maser-avatar {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    object-fit: cover;
    margin-right: 1rem;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    background-color: #f0f0f0;
}

.maser-info {
    flex-grow: 1;
}

.maser-name {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.maser-specialization {
    font-size: 13px;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Štýl pre vybratý riadok (Summary) - vylepšená kópia Android dizajnu */
.layout-selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--primary-light);
    padding: 14px 20px;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(46, 125, 50, 0.1);
    transition: all 0.2s ease;
}

.layout-selected:hover {
    background-color: #dcede1;
}

.selected-value {
    color: var(--primary-color);
    font-weight: 800; /* Extra tučné */
    font-size: 17px;
    flex-grow: 1;
    margin-right: 15px;
}

.btn-edit-android {
    background: transparent;
    border: none;
    color: #999;
    font-size: 1.3rem;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.btn-edit-android:hover {
    color: var(--primary-color);
}

/* Kalendár */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    background-color: #eee;
    border: 1px solid #eee;
}

.calendar-day {
    background-color: white;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 500;
}

.calendar-day.disabled {
    background-color: #fafafa;
    color: #ccc;
    cursor: default;
}

.calendar-day.active {
    background-color: var(--primary-color) !important;
    color: white !important;
}

/* Floating Action Button (Android Style) */
.btn-fab {
    position: fixed;
    bottom: 85px; /* Moved up to avoid bottom nav on mobile */
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    z-index: 1050; /* Higher priority */
    transition: transform 0.2s, background-color 0.2s;
    border: none;
    text-decoration: none;
}

.btn-fab:hover {
    background-color: #1b5e20;
    color: white;
    transform: scale(1.1);
}

.btn-fab i {
    font-size: 24px;
}

/* Karta masáže na dashboarde */
.massage-card {
    border-radius: 12px !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    background: white;
    transition: box-shadow 0.2s;
    overflow: hidden;
    margin-bottom: 12px;
}

.massage-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.massage-status-bar {
    width: 6px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.status-upcoming { background-color: var(--primary-color); }
.status-past { background-color: #bdbdbd; }

.dashboard-section-title {
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Desktop Tabs Navigation */
.desktop-nav {
    background-color: white;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 2rem;
}

.nav-tab {
    padding: 1rem 1.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 3px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.nav-tab:hover {
    color: var(--primary-color);
    background-color: var(--primary-light);
}

.nav-tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}
