/* Osnovni stilovi inspirisani Oktopod.rs */
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #003369;
            text-align: center;
            margin-bottom: 30px;
            font-size: 28px;
        }
        .date-section {
            background-color: white;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            overflow: hidden;
        }
        .date-header {
            background-color: #003369;
            color: white;
            padding: 12px 20px;
            font-size: 18px;
            font-weight: bold;
        }
        .nights-badge {
            background-color: #2980b9;
            color: white;
            padding: 3px 8px;
            border-radius: 5px;
            font-size: 16px;
            margin-left: 10px;
            font-weight: normal;
        }
        .table-responsive {
            overflow-x: auto;
        }
        table {
            width: 100%;
            border-collapse: collapse;
        }
        th {
            background-color: #f8f9fa;
            color: #1a5276;
            padding: 12px 15px;
            text-align: left;
            font-weight: 600;
            border-bottom: 2px solid #ddd;
        }
        td {
            padding: 12px 15px;
            border-bottom: 1px solid #eee;
            border-right: 1px solid #eee;
            vertical-align: middle;
        }
        tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        tr:hover {
            background-color: #f1f1f1;
        }
        .location-cell {
            font-weight: bold;
            color: #003369;
            background-color: #eaf2f8 !important;
            border-right: 2px solid #ddd;
            border-bottom: 2px solid #ddd;
            border-left: 2px solid #ddd;
        }
        .vila-name {
            font-weight: 500;
            color: #2c3e50;
        }
        .price-cell {
            font-weight: bold;
            color: #003369;
            text-align: center;
            min-width: 40px;
        }
        .empty-cell {
            color: #95a5a6;
            font-style: italic;
            text-align: center;
        }
        @media (max-width: 768px) {
            .container {
                padding: 10px;
            }
            th, td {
                padding: 8px 10px;
                font-size: 14px;
            }
        }