/* Allgemeine Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

.shoe-card {
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.shoe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.shoe-image {
    height: 220px;
    object-fit: contain;
    background-color: #f8f9fa;
    padding: 8px;
}

footer {
    margin-top: auto;
    border-top: 1px solid #dee2e6;
}

/* Buttons */
.btn {
    border-radius: 0.5rem;
    font-weight: 500;
}

.btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

/* Cards */
.card {
    border: none;
    border-radius: 0.5rem;
}

.card-header {
    border-radius: 0.5rem 0.5rem 0 0;
    padding: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .shoe-image {
        height: 200px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .navbar-brand {
        font-size: 1rem;
    }
}

/* Formen */
.form-control, .form-select {
    border-radius: 0.5rem;
    border: 1px solid #ced4da;
}

.form-control:focus, .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Tables */
.table {
    font-size: 0.95rem;
}

.table thead {
    font-weight: 600;
}

/* Alerts */
.alert {
    border-radius: 0.5rem;
    border: none;
}

/* Badges */
.badge {
    padding: 0.5rem 0.75rem;
    font-weight: 500;
    border-radius: 0.25rem;
}
