body {
    color: #7c7c7c;
}

/* Limit document width to an A4-like size */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 15px;
}

/* Header Image Styles */
.header-container {
    padding-top: 25px;
    padding-bottom: 25px;
    max-width: 1150px;
    margin: 0 auto;
}

.header-img {
    max-height: 25px;
    object-fit: contain;
}

.header-img-lg {
    max-height: 80px;
    object-fit: contain;
}

/* Card and Textarea Styles */
.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

.card-header, .p-3 {
    font-size: 1.25rem;
    font-weight: bold;
}

.textarea {
    min-height: 2.5rem;
}

.title {
    background-color: #f69779;
    color: white;
    border-radius: 10px;
}

img {
    max-height: 240px;
    object-fit: cover;
}

.profile-img {
    margin-top: 40px;
}

.bg-light.border {
    border-radius: 5px;
}

.footer {
    font-size: 0.9rem;
    text-align: center;
    margin: 0 auto;
}

.footer-quote {
    color: #f6a8a9;
}

.footer-quote-author {
    color: #c5c5c5;
}

.d-flex.align-items-center > div {
    flex-grow: 1;
}

.pictures-title {
    color: #c5c5c5;
}

/* Parent Container for Button and Text */
.floating-download-container {
    position: fixed; /* Container is fixed */
    bottom: 20px; /* Adjust vertical position as needed */
    right: 20px; /* Align horizontally to the viewport */
    display: flex; /* Use flexbox layout */
    flex-direction: column; /* Stack button (on top) and text (below) */
    align-items: center; /* Center elements horizontally */
    z-index: 1000;
}

/* Floating Circular Download Button */
.floating-download-button {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.floating-download-button:hover {
    transform: scale(1.1); /* Slight zoom on hover */
    background-color: #0056b3;
}

/* Centered Download Text Below the Button */
.download-text {
    margin-top: 8px; /* Add space between the button and the text */
    font-size: 14px;
    color: #007bff;
    text-align: center;
}

.download-text:hover {
    color: #0056b3;
}

/* Icon inside Floating Button */
.floating-download-button i {
    font-family: "Bootstrap Icons", sans-serif;
}
