    .animal-detail {
        background-color: #2c3e50;
        border-radius: 10px;
        padding: 30px;
        margin-bottom: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .animal-image {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
    }

    .animal-name {
        color: #ecf0f1;
        margin-bottom: 10px;
    }

    .scientific-name {
        color: #bdc3c7;
        font-style: italic;
        margin-bottom: 20px;
    }

    .info-label {
        font-weight: bold;
        color: #3498db;
    }

    .price {
        font-size: 1.5em;
        color: #2ecc71;
        margin-bottom: 20px;
    }

    .add-to-cart-btn {
        background-color: #e67e22;
        color: white;
        border: none;
        padding: 12px 24px;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.3s, transform 0.2s;
        font-size: 1.1em;
        font-weight: bold;
        width: 100%;
    }

    .add-to-cart-btn:hover {
        background-color: #d35400;
        transform: translateY(-2px);
    }

    .form-control {
        background-color: #34495e;
        border: 1px solid #456789;
        color: #ecf0f1;
    }

    .form-control:focus {
        background-color: #2c3e50;
        border-color: #3498db;
        box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
    }

    label {
        color: #bdc3c7;
    }