/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    color: #27272e;
    background-color: #e5e5e5;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    max-width: 1080px;
    margin: 20px auto;
    padding: 25px 20px;
    background-color: #fff;
    border-radius: 15px;
    text-align: center;
}

/* Header Section */
.header h1 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 10px;
}

.header p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 20px;
    color: #6c757d;
}

/* Review Links Section */
.review-links .row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: nowrap;
}

.icon-column {
    margin-right: 10px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-column img {
    width: 60px;
    height: 60px;
}

.button-column {
    display: flex;
    justify-content: center;
}

.review-button {
    display: inline-block;
    font-size: 18px;
    color: #000;
    padding: 12px 5px;
    border: 2px solid #000;
    border-radius: 0;
    background-color: #e5e5e5;
    text-decoration: none;
    transition: all 300ms ease;
    width: 295px;
    max-width: 295px;
    text-align: left;
}

.review-button:hover {
    border-color: transparent;
    padding-left: 20px;
    background-color: rgba(0, 0, 0, 0.05);
}

.review-button:hover::after {
    content: "\003e";
    margin-left: 10px;
    opacity: 1;
    transition: margin-left 300ms ease, opacity 300ms ease;
}

/* Footer Section */
.footer p {
    text-align: center;
    font-size: 16px;
    color: #6c757d;
}

.footer p a {
    color: #2ea3f2;
    text-decoration: none;
}

.footer p a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 490px) {
    .container {
        padding: 10px;
        
    }

    .review-links .row {
        flex-direction: row;
        justify-content: center;
    }

    .button-column {
        width: 100%;
    }

    .review-button {
        width: 100%;
        max-width: 295px;
        font-size: 14px;
        /* Ensures buttons don't get too large on wider screens */
    }
}

/* Medium screens (e.g., tablets) */
@media (min-width: 491px) and (max-width: 1024px) {
    .review-button {
        min-width: 295px;
        /* Ensures all buttons have a consistent minimum width */
        width: 295px;
        /* Allows the buttons to adjust their width while maintaining consistency */
    }
}

/* Apply a 5px left and right margin when the screen is less than 1080px */
@media (max-width: 1079px) {
    .container {
        margin: 10px 5px;
        /* 20px top/bottom, 5px left/right */
    }
}

.mobile-button {
    display: none; /* Hidden by default */
}

.desktop-button {
    display: inline-block; /* Shown by default */
}

@media (max-width: 768px) {
    .mobile-button {
        display: inline-block; /* Shown on mobile screens */
    }

    .desktop-button {
        display: none; /* Hidden on mobile screens */
    }
}

#facebook-instructions img {
    max-width: 100%; /* Ensures the image doesn't exceed the width of its container */
    height: auto; /* Maintains the image's aspect ratio */
    display: block; /* Prevents extra space below the image */
    margin: 0 auto; /* Centers the image */
}


/* Basic styling for the review-button */
.review-button.highlight {
  background-color: #ff5722; /* Vibrant color */
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding: 15px 30px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  outline: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Pulsing animation */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 10px rgba(255, 87, 34, 0.7), 0 0 20px rgba(255, 87, 34, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 87, 34, 1), 0 0 30px rgba(255, 87, 34, 0.7);
  }
}

/* Apply the pulse animation */
.review-button.highlight {
  animation: pulse 2s infinite;
}

/* Hover interaction */
.review-button.highlight:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}
