body {
    font-family: "Poppins", Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #fafafa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
}

header {
    background: linear-gradient(135deg, #ffb6d5, #ff8ecf);
    padding: 25px 20px;
    color: white;
    text-align: center;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

header h1 {
    margin: 0 0 10px 0;
    font-weight: 600;
    letter-spacing: 1px;
}

nav a {
    margin: 0 12px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: #ffeef7;
    text-shadow: 0 0 5px rgba(255,255,255,0.6);
}

.container img {
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}


.price-table,
.admin-table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 25px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.price-table th,
.price-table td,
.admin-table td {
    border-bottom: 1px solid #eee;
    padding: 12px 15px;
    text-align: left;
}

.price-table th {
    background: #ffe0ef;
    font-weight: 600;
}

.price-table tr:nth-child(even),
.admin-table tr:nth-child(even) {
    background: #fafafa;
}

.price-table tr:hover,
.admin-table tr:hover {
    background: #ffeef7;
}

.button-cell a {
    background: #ff8ecf;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
}

.button-cell a:hover {
    background: #ff66b5;
}

footer {
    text-align: center;
    padding: 15px;
    margin-top: 50px;
    background: #f7f7f7;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid #eee;
}

@media (max-width: 600px) {
    nav a {
        display: inline-block;
        margin: 6px;
    }

    .container {
        padding: 15px;
    }

    .price-table, .admin-table {
        font-size: 0.9rem;
    }
}





.galerii-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 30px auto;
    max-width: 900px;
}

.galerii-item {
    width: 150px;
    text-align: center;
}

.galerii-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform 0.3s;
}

h3, p {
    text-align: center;
    margin: 10px auto;
    max-width: 500px;
}

