
.rounded-image {
    margin-top: 10px;
    border-radius: 10px; /* Adjust the border radius as needed */
    display: block;
    width: 395px;
    height: 395px;
    object-fit: cover; /* Ensure images maintain aspect ratio */
}


.profile-buttons {
    display: flex;
    align-items: left;
    margin-left: 0;
}

.share-button,
.save-button {
    padding: 10px;
    margin-right: 10px;
    border: none;
    background-color: #121212; /* Adjust button color as needed */
    color: #fff; /* Adjust text color as needed */
    cursor: pointer;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    padding: 10px;
}

.share-button:hover,
.save-button:hover {
    background-color: #191919; /* Adjust hover color as needed */
}

.share-button i,
.save-button i {
    margin-right: 5px;
}

.requested-by,
.submitted-date {
    margin-right: 10px;
    font-size: 14px;
    color: #666; /* Adjust text color as needed */
}


    .post-heading{
        font-size: 32px;
        font-weight: 700;
        margin: 0;
    }

    .mixedContent{
        border-radius: 10px;
    }

    .columna {
    margin-right: auto;
    margin-left: auto;
    max-width: 800px;
    border-radius: 10px;
}

.column-wrapper {
  margin-top: 20px;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .column-wrapper {
    flex-direction: column; /* Stack columns vertically on smaller screens */
    align-items: stretch; /* Stretch columns to full width on smaller screens */
  }
}


.carousel-wrapper {
    flex: 1;
}

.carousel-container {
    max-width: 800px;
    border-radius: 10px;
}

.carousel-slide {
    max-width: 800px;
    display: flex;
    border-radius: 10px;
}

.carousel-slide img {
    max-width: 800px;
    max-height: 100%;
    border-radius: 10px;
}

.images-column {
    flex: 1;
}

.images {
    max-width: 800px;
}

.new-modal-content {
    max-width: 100%; /* Ensure modal content fills its parent container */
    max-height: 100%;
}

.calculalo {
    margin-top: 0;
}

.column-wrapper {
    max-width: 800px;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.carousel-wrapper {
    flex: 1;
}

.carousel-column,
.images-column {
    flex: 1;
    box-sizing: border-box;
}

.carousel-container {
    max-height: auto;
    max-width: 800px;
    border-radius: 10px;
}

.carousel-slide {
    max-width: 800px;
    display: flex;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.carousel-slide img {
    max-width: 800px;
    max-height: 100%;
    border-radius: 10px;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 800px;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    box-sizing: border-box;
}

.carousel-nav button {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    outline: none;
    transition: background 0.3s;
}

.carousel-nav button:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-dot {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.carousel-dot button {
    border: none;
    cursor: pointer;
    margin: 0 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    outline: none;
    transition: background 0.3s;
}

.carousel-dot button.active {
    background: #cdcdcd;
}

.images img {
    margin-bottom: 10px;
    border-radius: 10px;
}

.new-modal {
    display: none;
    position: fixed;
    z-index: 2;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.new-modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
}

.new-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.new-close:hover,
.new-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}