/* -------------------------------------------------------------------------- */
/*                                Aranyak Button                               */
/* -------------------------------------------------------------------------- */
/* prettier-ignore */
/*# sourceMappingURL=user.css.map */

}

.background {
  position: fixed;
  top: 1px;
  margin: 0;
  padding-top: 40px;
  left: 0;

  z-index: -1024;
}	

.background img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.largeImage {
  max-width: 800px; /* Set the maximum width for the large image */
}

.line-clamp-8 {
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.social-icons {
    display: flex;
    gap: 10px; /* Adjust space between icons */
}

.social-icons a {
    display: inline-block;
}

.social-icons img.social-icon {
    width: 24px; /* Adjust icon size */
    height: 24px; /* Adjust icon size */
}

.social-icons img.social-icon:hover {
    opacity: 0.7; /* Example hover effect */
}


/*
.image-container {
  position: relative;
  display: inline-block;
}

.larger-image-container {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  background-color: white;
  padding: 20px;
  border: 3px solid #ccc;
}

.larger-image {
  max-width: 70%;
  height: auto;
}

.close-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  font-size: 20px;
}

.social-icons {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.social-icon {
    margin-right: 10px;
}
*/

.add-section {
    background-color: #fce4ec; 
}

.edit-section {
    background-color: #e3f2fd; 
}

.list-section {
    background-color: #f9fbe7; 
}

.section-box {
    border: 2px solid #ccc; 
    padding: 15px; 
    margin-bottom: 20px; 
    border-radius: 5px; 
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1); 
}

.update-btn {
    	display: inline-block;
    	font-size: 12px;         /* Small font size */
    	padding: 5px 10px;       /* Compact padding */
    	margin-top: 5px;         /* Space above or below */
    	color: #fff;             /* Text color */
   		background-color: #007bff; /* Bootstrap primary color */
    	border: none;            /* Remove default border */
    	border-radius: 5px;      /* Rounded corners */
    	cursor: pointer;         /* Pointer cursor on hover */
    	transition: background-color 0.3s ease; /* Smooth hover effect */
}

.update-btn:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

.update-btn:focus {
    outline: none;           /* Remove focus outline */
}

.event-container {
    margin: 0 auto;
	max-width: 800px; /* Or your preferred width */
	margin-bottom: 30px; /* Space between events */
    padding: 0 15px; /* Space inside the container */
    border-bottom: 1px solid #ddd; /* Optional: a line between events */
    border-radius: 5px; /* Optional: rounded corners */
    background-color: #f9f900; /* Optional: light background color */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow */
}

.event-media {
    width: 50%;
    display: inline-block;
    border: 1px solid #ccc; /* Optional: border for visual consistency */
}

.event-media.pdf {
    height: 800px;  /* Fixed height for PDFs */
	width: 100%; /* Make each wrapper fill the container */
}

.event-media.image {
    height: auto; /* Adjusts automatically for images */
}

.event-image {
    max-width: 100%; /* Ensures the image fits within the container's width */
    height: auto;    /* Maintains aspect ratio */
    display: block;  /* Ensures proper alignment */
    margin: 0 auto;  /* Centers the image */
    border: 1px solid #ccc; /* Optional: adds a subtle border */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: adds a shadow */
}

.event-wrapper {
    width: 100%; /* Make each wrapper fill the container */
	margin-bottom: 30px; /* Space between events */
    padding: 15px;
    border: 1px solid #ddd; /* Optional border */
    border-radius: 8px; /* Optional rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional shadow */
    background-color: #f9f9f9; /* Optional background color */
    padding-bottom: 10px; /* Optional: space inside the event box */
    border-bottom: 1px solid #ccc; /* Optional: a line between events */
    text-align: center; /* Centers text and inline elements */
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers block elements */	
}

.event-wrapper h4 {
    width: 100%; /* Full width for headings if needed */
    text-align: center;
}

.event-media {
    max-width: 100%; /* Ensure media doesn't overflow */
    height: auto;
}

.editable[contenteditable="true"]:empty {
    outline: 2px dashed #007bff;
    padding: 5px;
}

/* Add these styles to your user.css file */
ul {
    list-style-type: disc !important;
    padding-left: 40px !important;
}

ul li {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    list-style-type: disc !important;
}

/* If you're using bullet points anywhere else and don't want these styles to apply everywhere,
   you can make them more specific by adding an ID or class: */

#products ul {
    list-style-type: disc !important;
    padding-left: 40px !important;
}

#products ul li {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    list-style-type: disc !important;
}

#loginModal .modal-dialog {
    position: relative;
    top: 60px; /* Adjust based on your menu bar height */
}
