    /* Your CSS styles */
    body {
        font-family: Arial, sans-serif; 
        background-color: #f4f4f4; 
        margin: 0; 
        padding: 0;
        height: 100vh;
    }
    .noselect {
        -webkit-touch-callout: none; 
        -webkit-user-select: none; 
        -khtml-user-select: none; 
        -moz-user-select: none; 
        -ms-user-select: none; 
        user-select: none;
    }
    
    a {color: green; font-weight: bold; text-decoration: none;}

    a:focus,a:visited,a:active {outline: none;}
    
    .container {
        max-width: 600px; 
        margin: 20px auto; 
        background-color: #fff; 
        border-radius: 10px; 
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        overflow: hidden;
    }
    img {
        display: block; 
        max-width: 100%; 
        height: auto;
    }
    h3 {
        font-size: 17px; 
        margin-bottom: 0px; 
        padding: 15px;
        margin: 0;
        color: red;
    }
    h4 {
        text-align: center;
        background-color: #f4f4f4; 
        margin: 0; 
        padding: 10px; 
        font-size: 14px; 
        color: #666;
    }
    
    h6 {
        margin: 0; 
        padding: 15px; 
        font-size: 10px; 
        color: #666;
    }
    
    .details {
        display: flex; 
        justify-content: space-between; 
        padding: 10px; /* Reduced padding */
        background-color: #f9f9f9; 
        border-top: 1px solid #e0e0e0;
        margin-bottom: 1px; /* Added margin-bottom for spacing between details and description */
    }
    .details div {
        font-size: 14px; 
        color: #555;
    }
    p {
        font-size: 17px; 
        margin-top: 0px; /* Removed margin-top to reduce space above the description */
        margin-bottom: 10px; /* Added margin-bottom for spacing below the description */
        padding: 15px; 
        text-align: left; 
        line-height: 1.6;
    }
    em {
        color: #666;
    }

    @media only screen and (min-width: 600px) {
        body {width: 600px; margin: auto;}
    }
    .loading {
        text-align: center; 
        font-size: 18px; 
        color: #888; 
        padding: 20px;
    }

    #shareButtonRight {
        display: block; /* Ensure the button is visible */
        padding: 15px 20px;
        background-color: #007bff;
        color: white;
        border: none;
        cursor: pointer;
        border-radius: 10%; /* Rounded shape for the button */
        font-size: 16px;
        transition: background-color 0.3s;
        position: fixed; /* Fixed position for floating effect */
        bottom: 20px; /* Distance from the bottom of the page */
        right: 20px; /* Distance from the right side of the page */
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Added shadow for better visibility */
        z-index: 1000; /* Ensure it stays on top of other elements */
    }

    #shareButtonRight:hover {
        background-color: #0056b3;
    }

    #shareButtonLeft {
        display: block; /* Ensure the button is visible */
        padding: 15px 20px;
        background-color: #007bff;
        color: white;
        border: none;
        cursor: pointer;
        border-radius: 10%; /* Rounded shape for the button */
        font-size: 16px;
        transition: background-color 0.3s;
        position: fixed; /* Fixed position for floating effect */
        bottom: 20px; /* Distance from the bottom of the page */
        left: 20px; /* Distance from the left side of the page */
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Added shadow for better visibility */
        z-index: 1000; /* Ensure it stays on top of other elements */
    }

    #shareButtonLeft:hover {
        background-color: #0056b3;
    }

/* Flash message styling */
      #flashMessage {
          position: fixed;
          bottom: 20px;
          left: 50%;
          transform: translateX(-50%);
          background-color: rgba(0, 0, 0, 0.7);
          color: white;
          padding: 10px 20px;
          border-radius: 5px;
          font-size: 16px;
          z-index: 1000;
          display: none;
      }

#desktop-message {
            margin: 100px;
            display: none;
            text-align: center;
            font-size: 20px;
            color: red;
        }