/* Global styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Container styling for centering content */
.container {
    max-width: 800px;
    margin: 0 auto; /* Center-aligns content */
    padding: 20px;
    text-align: center;
}

/* Header styling */
h1 {
    color: #444;
    text-align: center;
}

/* Image styling */
img {
    max-width: 90%;
    height: auto;
    border: 2px solid #ddd;
    border-radius: 5px;
    margin-top: 20px;
}

/* Navigation links styling */
.nav-links a {
    color: #007bff;
    text-decoration: none;
    margin: 0 10px;
}

.nav-links a:hover {
    text-decoration: underline;
}

.nav-links .disabled {
    color: #999;
}

/* Share link styling */
.share-link {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin: 0 auto;
}

/* Share link input styling */
.share-link input[type="text"] {
    width: 80%;
    padding: 5px;
    margin-bottom: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Share link button styling */
.share-link button {
    padding: 5px 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 10px;
}

.share-link button:hover {
    background-color: #0056b3;
}

/* Social share section styling */
.social-share {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.social-share p {
    margin: 0;
    margin-right: 10px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Styling for black Bootstrap Icons */
.social-share a {
    color: #000; /* Set icon color to black */
    text-decoration: none;
    margin-right: 10px;
    font-size: 1.5rem; /* Adjust icon size */
    transition: opacity 0.2s ease-in-out;
}

.social-share a:visited {
    color: #000; /* Ensure visited links stay black */
}

.social-share a:hover {
    color: #000; /* Keep color black on hover */
    opacity: 0.7; /* Optional hover effect */
}