/* Custom styles for Katze Firestore Version */

.badge-danger {
    color: #fff;
    background-color: #dc3545;
    border-radius: 50%;
    padding: 2px 6px;
}

#auth-section a {
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

#auth-section a:hover {
    color: #F28123;
}

/* Form Styles */
.login-form-wrap,
.checkout-form-wrap {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.error-message {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}

/* Adoption Page Styles */
.adoption-title {
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    margin: 30px 0;
    color: white;
    background: linear-gradient(45deg, #FF9F43, #FF6B6B);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border: 3px solid black;
}

.adoption-title h1 {
    font-size: 2em !important;
}

.adoption-title span {
    color: #fff;
}

.adoption-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.adoption-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 300px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.adoption-card:hover {
    transform: translateY(-5px);
}

.pet-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.pet-content {
    padding: 15px;
    text-align: center;
}

.pet-name {
    margin-top: 10px;
    color: #333;
}

.extra-info {
    padding: 0 15px 15px;
    color: #666;
    font-size: 14px;
}

.extra-info p {
    margin-bottom: 5px;
}