 #stock-asset-container {
   display: flex;
   margin-top: 40px;
   justify-content: center;
   width: 100%;
   max-width: 1400px;
   margin-bottom: 40px;
 }

 #stock-asset-image-container {

   display: flex;
   border-radius: 2px;

   justify-content: center;

 }

 #stock-asset-image {
   width: 100%;
   object-fit: contain;
   object-position: top;

 }




 @media (min-width: 750.1px) {



   #stock-asset-image {
     max-height: 800px;
   }

   #stock-asset-image-container {
     margin-right: 70px;
     width: 65%;
   }

   #stock-asset-info-container {
     width: 35%;
   }

   #download-button-container {
     margin-bottom: 25px;
   }



 }

 @media (max-width: 750px) {
   #stock-asset-image {
     width: 100%;
   }

   #stock-asset-container {
     flex-direction: column;
   }

   #stock-asset-image-container {
     margin-bottom: 10px;
   }

   #download-button-container {
     margin-top: 20px;
     margin-bottom: 30px;
   }
 }

 #download-button {
   width: 100%;
   font-size: 18px;
   color: white;
   background-color: rgb(0, 128, 49);
   border: none;
   padding: 13px 0px;
   border-radius: 5px;
   cursor: pointer;
   transition: box-shadow 0.15s,
     opacity 0.15s;
 }

 #download-button:hover {
   box-shadow: 0 0 4px rgba(0, 0, 0, 0.7);
 }

 #download-button:active {
   opacity: 0.5;
 }

 #asset-title-text {
   font-size: 22px;
   color: rgb(75, 74, 74);
   margin-bottom: 7px;
   font-weight: normal;
 }

 #asset-model-text-line {
   font-size: 14px;
   display: inline;
 }

 #asset-model-created-using {
   display: inline;
   font-size: 14px;
   font-weight: normal;
 }

 #asset-model-text-link {
   text-decoration: none;
   color: blue;

 }

 #asset-model-text-link:hover {
   color: rgb(82, 64, 241);
 }

 #long-description-container {
   margin-top: 20px;
 }

 #long-description-text {
   font-size: 14px;
   color: rgb(82, 82, 82);
   font-style: italic;
 }

 #tags-text-label {
   font-size: 14px;
   display: inline;
   font-weight: normal;
 }

 #tags-text {
   display: inline;
 }

 #tags-container {
   margin-top: 20px;
   font-size: 14px;
 }

 .tag-item {
   text-decoration: none;
   color: rgb(43, 43, 255);
 }

 .tag-item:hover {
   color: blue;
 }

 #stock-asset-more-details-container {
   margin-top: 20px;
 }



 #image-details-section-text {
   font-weight: bold;
   font-size: 18px;
   margin-bottom: 20px;
 }

 #prompt-used-section-text {
   font-size: 15px;
   color: rgb(15, 15, 15);

   display: inline;
   font-weight: normal;
 }

 #prompt-used-copy-link {
   text-decoration: none;
   color: rgb(93, 129, 190);
   font-size: 12px;
   margin-left: 2px;
   display: inline;
 }

 #prompt-used-copy-link:hover {
   color: rgb(0, 60, 255);
 }

 #prompt-used-text {
   font-size: 14px;
   color: rgb(88, 88, 88);
   margin-top: 12px;
   display: block;
 }

 #stock-asset-etc-details-grid {
   margin-top: 35px;
   display: grid;
   grid-template-columns: 1fr;
   row-gap: 10px;
 }

 .stock-asset-etc-item {
   display: flex;
   justify-content: space-between;
   font-size: 14px;
   align-items: center;
 }

 .stock-asset-etc-item-name {
   color: rgb(56, 56, 56);
   font-weight: normal;
   font-size: 14px;
   margin: 0;
 }