/* Style for form wrapper */
.dog-info-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Style for form headings */
.dog-info-form h3, 
.dog-info-form h4 {
    color: #333;
    font-size: 20px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

/* Style for form labels */
.dog-info-form label {
    font-weight: bold;
    color: #555;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

/* Style for form input fields */
.dog-info-form input[type="text"],
.dog-info-form input[type="number"],
.dog-info-form input[type="date"],
.dog-info-form textarea,
.dog-info-form select {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    color: #333;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

/* Style for text area */
.dog-info-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Style for dropdown fields */
.dog-info-form select {
    background-color: #fff;
    padding: 10px;
}

/* Style for submit button */
.dog-info-form input[type="submit"],
.dog-info-form button {
    background-color: #0073aa;
    color: #fff;
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Hover effect for submit button */
.dog-info-form input[type="submit"]:hover,
.dog-info-form button:hover {
    background-color: #005f8d;
}

/* Style for sections */
.dog-info-form .form-section {
    margin-bottom: 25px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dog-info-form {
        padding: 15px;
    }
    
    .dog-info-form input[type="text"],
    .dog-info-form input[type="number"],
    .dog-info-form input[type="date"],
    .dog-info-form textarea,
    .dog-info-form select {
        font-size: 16px;
        padding: 12px;
    }
    
    .dog-info-form input[type="submit"],
    .dog-info-form button {
        font-size: 18px;
        padding: 12px;
    }
}

.dog-info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.dog-info-table th, .dog-info-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.dog-info-table th {
    background-color: #f2f2f2;
}

.dog-info-table a {
    color: #0073aa;
    text-decoration: none;
}

.dog-info-table a:hover {
    text-decoration: underline;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
  }
  
  .divider::before,
  .divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid;
  }
  
  .divider::before {
    margin-right: 10px;
  }
  
  .divider::after {
    margin-left: 10px;
  }
  
  .divider span {
    font-size: 14px;
    font-weight: 800;
  }
  