
/* General styles for the 3D model container */
.sketchfab-embed-wrapper {
    display: flex;
    justify-content: center;
    margin: 20px 30px;
    padding: 50px;
    background-color: #f9f9f9; /* Light background for contrast */
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Style for the iframe (3D model) */
.sketchfab-embed-wrapper iframe {
    width: 100%;
    height: 500px; /* Set height of the 3D viewer */
    border-radius: 8px;
    border: none;
}

/* Text below the iframe (credit and model details) */
.sketchfab-embed-wrapper p {
    font-size: 14px;
    color: #4A4A4A;
    margin-top: 10px;
    font-weight: normal;
    line-height: 1.6;
}

/* Styling for the links inside the paragraph */
.sketchfab-embed-wrapper a {
    font-weight: bold;
    color: #1CAAD9;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Hover effect for the links */
.sketchfab-embed-wrapper a:hover {
    color: #4A90E2; /* Slightly darker shade for hover */
}

/* For better responsiveness on smaller screens */
@media (max-width: 768px) {
    .sketchfab-embed-wrapper iframe {
        height: 400px; /* Adjust height for smaller screens */
    }
}

/* For mobile view, adjust text size and iframe height */
@media (max-width: 480px) {
    .sketchfab-embed-wrapper iframe {
        height: 300px; /* Further reduce height on very small screens */
    }

    .sketchfab-embed-wrapper p {
        font-size: 12px; /* Make the text a bit smaller */
    }
}
