/* Estilos base para PetFriendly Tracker */
.petfriendly-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #fdfdfd;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.petfriendly-form-container label {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.petfriendly-form-container input[type="text"],
.petfriendly-form-container textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.petfriendly-form-container textarea {
    min-height: 100px;
}

.petfriendly-dashboard {
    max-width: 800px;
    margin: 0 auto;
}

.pet-list ul {
    list-style: none;
    padding: 0;
}

.pet-list li {
    background: #fff;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pet-list li strong {
    font-size: 1.2em;
}

/* Perfil Público */
.petfriendly-public-profile {
    max-width: 800px;
    margin: 40px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    overflow: hidden;
}

.pet-header {
    text-align: center;
    background: #f0f7f4; /* Un verde muy claro, amigable */
    padding: 30px 20px;
    border-bottom: 3px solid #4CAF50;
}

.pet-photo img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.pet-name {
    margin: 15px 0 5px;
    color: #2c3e50;
    font-size: 2.5em;
}

.pet-tag {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9em;
}

.pet-content {
    padding: 30px;
}

.pet-section {
    margin-bottom: 25px;
}

.pet-section h3 {
    margin-top: 0;
    color: #34495e;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 10px;
}

.pet-section p {
    color: #555;
    line-height: 1.6;
}

.alert-section h3 {
    color: #e74c3c;
    border-bottom-color: #fadbd8;
}

.pet-footer {
    background: #f8f9fa;
    text-align: center;
    padding: 15px;
    color: #7f8c8d;
    font-size: 0.9em;
}

/* Beneficios */
.petfriendly-benefits {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px dashed #ddd;
}

.petfriendly-benefits h2 {
    color: #f39c12;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.benefit-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.benefit-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.benefit-content {
    padding: 15px;
}

.benefit-content h3 {
    margin: 0 0 10px;
    color: #2c3e50;
    font-size: 1.2em;
}

.benefit-content p {
    color: #555;
    font-size: 0.95em;
    line-height: 1.5;
}
