﻿body {
    background-color: #f8f9fa;
    font-family: 'Segoe UI', sans-serif;
}

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

h1, h2,h5 {
    color: #1a237e;
    font-weight: bold;
}

.icon-color {
    color: #1a237e;
}

.card {
    
    border-radius: 8px;
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.btn-custom {
    background-color: #1a237e;
    border-color: #1a237e;
    color: #fff;
}

    .btn-custom:hover {
        background-color: #151d6e;
        border-color: #151d6e;
        color: #fff;
    }

.form-select, .form-control {
    border-radius: 4px;
}

.table thead {
    background-color: #1a237e;
    color: #fff;
}

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

.pagination .page-item.active .page-link {
    background-color: #1a237e;
    border-color: #1a237e;
    color: #fff;
}

.modal-content {
    border-radius: 8px;
}

.modal-header {
    border-bottom: none;
}

input[type=range] {
    flex: 1;
}

input[type=number] {
    width: 80px;
}
.photo-tile {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .photo-tile img {
        object-fit: cover;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

@media (max-width: 767px) {
    .photo-tile {
        height: 150px;
    }
}
.filter-buttons {
    align-items: end;
    height: 100%;
}

    .filter-buttons .btn {
        margin-bottom: 0;
    }

@media (max-width: 767px) {
    .photo-tile {
        height: 150px;
    }

    .filter-buttons {
        margin-top: 1rem;
    }
}

.clickable-row {
    cursor: pointer;
}