html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: center;
}

    .card img {
        max-width: 100%;
        border-radius: 10px;
    }

.btn {
    background: #007bff;
    color: white;
    padding: 6px 12px;
    text-decoration: none;
    border-radius: 6px;
}

    .btn:hover {
        background: #0056b3;
    }

.table {
    width: 100%;
    border-collapse: collapse;
}

    .table th, .table td {
        padding: 8px;
        border-bottom: 1px solid #ddd;
    }

.btn-edit {
    color: #ffc107;
    text-decoration: none;
    margin-right: 5px;
}

.btn-delete {
    color: red;
    text-decoration: none;
}

.pagination {
    margin-top: 20px;
    text-align: center;
}

    .pagination a {
        margin: 0 4px;
        padding: 6px 10px;
        background: #eee;
        border-radius: 4px;
        text-decoration: none;
    }

        .pagination a:hover {
            background: #ccc;
        }
