/* אתחול רכיבים */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Assistant', sans-serif;
    background-color: #faf8f5;
    color: #333333;
    line-height: 1.6;
    padding: 40px 20px;
    -webkit-font-smoothing: antialiased;
}

.page-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.page-header {
    margin-bottom: 30px;
    text-align: right;
}

.back-link {
    display: inline-block;
    text-decoration: none;
    color: #c5a880;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: #a3855c;
}

.page-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.page-subtitle {
    font-size: 1.05rem;
    color: #666666;
    font-weight: 300;
}

/* עיצוב מערכת הטאבים */
.tabs-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #e6e1da;
    padding-bottom: 10px;
}

.tab-btn {
    background: none;
    border: 1px solid #e6e1da;
    padding: 10px 24px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: #666666;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn:hover {
    border-color: #c5a880;
    color: #c5a880;
}

.tab-btn.active {
    background-color: #c5a880;
    border-color: #c5a880;
    color: #ffffff;
}

/* ניהול מצבי תצוגה של טבלאות */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* מעטפת הטבלה */
.table-container {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e6e1da;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
    overflow-x: auto;
    margin-bottom: 40px;
}

.places-table {
    width: 100%;
    border-collapse: collapse;
    text-align: right;
    font-size: 1rem;
}

.places-table th, 
.places-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #eeebe5;
}

.places-table th {
    background-color: #f5f1ea;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.95rem;
}

.places-table tbody tr:nth-child(even) {
    background-color: #fbfaf8;
}

.places-table tbody tr:hover {
    background-color: #f3eee5;
}

.col-location {
    font-weight: 600;
    color: #1a1a1a;
    width: 25%;
}

.col-name {
    color: #444444;
    width: 35%;
}

.col-link {
    width: 40%;
}

.col-link a {
    color: #c5a880;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.15s ease;
}

.col-link a:hover {
    color: #1a1a1a;
    text-decoration: underline;
}

.page-footer {
    text-align: center;
    font-size: 0.85rem;
    color: #999999;
    font-weight: 300;
}

@media (max-width: 600px) {
    body {
        padding: 20px 10px;
    }
    .page-title {
        font-size: 1.75rem;
    }
    .tab-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    .places-table th, 
    .places-table td {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
}