.WaGadgetAuthorizationRequired .loginPageTable input.loginButton { background:#D20C0A !important; }


.flexbox {
  transition: all 0.3s ease; /* Smooth transition effect for all properties */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Initial shadow */ 
}
.flexbox:hove {
  transform: scale(1.05); /* Grow the column */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Shadow on hover */
}

/* Style for the audio player container */
audio {
  width: 300px; /* Adjust width as needed */
  margin: 0 auto; /* Center the player horizontally */
}

/* Style for the audio player controls */
audio {
  width: 100%;
  padding: 10px;
  background-color: #f8f8f8;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.custom-placeholder {
    background-image: url('https://cnc-community.com/resources/11_things.png'); /* Replace with your image URL */
    background-repeat: no-repeat;
    background-attachment: fixed; /* Makes the background fixed */
    background-size: cover;
    background-position: center;
    padding: 10px; /* Adjust padding to suit your needs */
    color: #fff; /* Text color */
    box-sizing: border-box;
}

/* Placeholder text style */
input.custom-placeholder::placeholder {
    color: rgba(255, 255, 255, 0.7); /* Placeholder text color */
}

/* Style for the audio player controls on hover */
audio:hover {
  background-color: #eaeaea;
}

/* Style for the audio player controls when playing */
audio::-webkit-media-controls-panel {
  background-color: #f8f8f8;
  border-radius: 5px;
}

.testimg img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease-in-out; /* Smooth transition */
}
.testimg img:hover {
  transform: scale(1.1) rotate(5deg) translateY(-10px); /* Scale up, rotate, and move up */
}


.image-container img:hover {
  transform: scale(1.1) rotate(5deg); /* Scale up and rotate */
}

.testimg img:hover {
  transform: scale(1.1) rotate(5deg) translateY(-10px); /* Scale up, rotate, and move up */
}


/* CSS for the button */
.stylizedButton {
  padding: 10px 20px; /* Adjust padding as needed */
  font-size: 16px; /* Adjust font size as needed */
  transition: all 0.8s ease; /* Smooth transition for all properties */
}

/* Hover effect to shrink the button */
.stylizedButton:hover {
  transform: scale(0.95); /* Scale down the button to 95% of its original size */

}



::selection {
  background-color: #CC0000; /* Set the desired color for text selection */
  color: #ffffff; /* Set the text color for better visibility */
}

.hmenu {
  display: flex;
  justify-content: center;
}

/* Define the fade-in-down animation */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply the animation to your element */
.flexone {
  animation: fadeInDown 300ms ease-in-out;
}

/* Define the fade-in-down animation */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply the animation to your element */
.flextwo {
  animation: fadeInDown 600ms ease-in-out;
}

/* Define the fade-in-down animation */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply the animation to your element */
.flexthree {
  animation: fadeInDown 900ms ease-in-out;
}



.profile /* Set font family for the entire profile */
body {
  font-family: 'Your Chosen Font', sans-serif; /* Replace 'Your Chosen Font' with the desired font */
}

/* Set background color to grey for member profile form */
body.profile-form {
  background-color: #f0f0f0; /* Replace with your preferred shade of grey */
}

/* Style links */
a {
  color: #000; /* Set the default color of the links to black */
  text-decoration: none; /* Remove underlines from links */
  position: relative; /* Add relative positioning for pseudo-element */
}

/* Add hover animation to links */
a:hover {
  color: #CC0000; /* Set the color the links should change to on hover */
}

/* Create the animation line on hover */
a:hover::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -3px; /* Adjust this value to add space between text and underline */
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #CC0000;
  animation: underline 0.1s ease; /* Add animation effect */
}


/* Default style for desktop */
.text-container {
    text-align: right;
}

/* Media query for mobile devices */
@media only screen and (max-width: 768px) {
    .text-container {
        text-align: left;
    }
}


/* Define the animation */
@keyframes underline {
  from {
    width: 0;
  }
  to {
    width: 100%;
  } }

/* Style for the image container */
.zoomhover {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

/* Image styling */
.zoomhover img {
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  border-radius: 8px; /* Optional: rounded corners */
}

/* Hover effect: scale slightly, shadow, and fade-in */
.zoomhover:hover img {
  transform: scale(1.05); /* Slight zoom-in effect */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); /* Shadow effect */
  opacity: 0.8; /* Fade effect */
}


/* Typing effect styles */
.typing {
  font-size: 16px;
  font-family: Arial, sans-serif;
  white-space: nowrap;
  overflow: hidden;
  border-right: 0; /* Remove border-right to handle the cursor separately */
  line-height: 1.5; /* Consistent line spacing */
  display: inline-block; /* Proper height calculation for inline content */
  position: relative; /* To position the cursor correctly */
}

/* Add animation only when this class is applied */
.typing.typing-active {
  animation: typing 4s steps(40, end);
}

/* Typing effect keyframes */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Blinking cursor */
.typing::after {
  content: ''; /* Create the blinking cursor */
  display: inline-block;
  position: absolute;
  right: 0; /* Position cursor at the end of the text */
  bottom: 0; /* Align cursor with the baseline of the last line */
  width: 2px; /* Cursor width */
  height: 1em; /* Matches the height of the font size */
  background-color: black; /* Cursor color */
  animation: blink 0.5s step-end infinite;
}

/* Cursor blinking effect */
@keyframes blink {
  50% {
    background-color: transparent;
  }
}


/* Initial state of the element (hidden and positioned off-screen) */
.slide-in {
  opacity: 0;
  transform: translateY(-100%); /* Slide in from the top */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Active state when the element is in the viewport */
.slide-in-active {
  opacity: 1;
  transform: translateY(0); /* Reset to its original position */
}

/* Initial state of the text (blurred and slightly transparent) */
.text-blur {
  filter: blur(10px); /* Start with a heavy blur */
  opacity: 0; /* Initially invisible */
  transition: filter 0.7s ease-out, opacity 0.7s ease-out;
  will-change: filter, opacity; /* Optimize performance */
}

/* Active state when the text is in the viewport */
.text-blur-active {
  filter: blur(0); /* Remove the blur */
  opacity: 1; /* Fully visible */
}

/* Initial state of the text (blurred and slightly transparent) */
.text-blur1 {
  filter: blur(10px); /* Start with a heavy blur */
  opacity: 0; /* Initially invisible */
  transition: filter 1.5s ease-out, opacity 1.5s ease-out;
  will-change: filter, opacity; /* Optimize performance */
}

/* Active state when the text is in the viewport */
.text-blur1-active {
  filter: blur(0); /* Remove the blur */
  opacity: 1; /* Fully visible */
}

/* Initial state of the text (blurred and slightly transparent) */
.text-blur2 {
  filter: blur(10px); /* Start with a heavy blur */
  opacity: 0; /* Initially invisible */
  transition: filter 2.1s ease-out, opacity 2.1s ease-out;
  will-change: filter, opacity; /* Optimize performance */
}

/* Active state when the text is in the viewport */
.text-blur2-active {
  filter: blur(0); /* Remove the blur */
  opacity: 1; /* Fully visible */
}

.full-width {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box
}