/* General styling */

body {
    font-family: Manrope, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 10px;
}



.container {
    background: #fff;
    padding: 20px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}



.card {
    background: #ffffff;
    padding: 15px;
    margin: 10px 0;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    text-align: left;
}



input {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    width: 90%;
    margin-bottom: 15px;
    appearance: none;
    
      background-color: rgba(0, 0, 0, 0);
      background-size: auto;
    background-size: 15px;
    background-color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }


/* Styled Dropdown */
select {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  width: 100%;
  margin-bottom: 15px;
  appearance: none;
  background: url('https://cdn-icons-png.flaticon.com/512/32/32195.png') no-repeat right 12px center;
    background-color: rgba(0, 0, 0, 0);
    background-size: auto;
  background-size: 15px;
  background-color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
/* Hover Effect */
select:hover {
    border-color: #28a745;
}

/* Focus Effect */
select:focus {
    outline: none;
    border-color: #218838;
    box-shadow: 0 0 5px rgba(40, 167, 69, 0.5);
}

/* Dropdown Wrapper */
.select-wrapper {
    position: relative;
    width: 100%;
}

/* Add Arrow Icon */
.select-wrapper::after {
    content: '\25BC';
    font-size: 14px;
    color: #333;
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    pointer-events: none;
}


select option {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 500;
    background: #ffffff;
    color: #333;
    padding: 10px;
}

















/* Pay Button */
.pay-button {
	font-family: Manrope, sans-serif;
    background: #28a745;
    color: white;
    border: none;
    padding: 14px;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.pay-button:hover {
    background: #218838;
}


/* Smooth fade-in animation for payment details */
#payment-details {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* When content changes, it fades in */
#payment-details.show {
    opacity: 1;
    transform: translateY(0);
}





























/* Confirmation Page Styling */
.confirmation-container {
    text-align: center;
    margin-top: 50px;
}

.checkmark {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 20px auto;
}

.circle {
    width: 80px;
    height: 80px;
    background: #28a745;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation: popIn 0.5s ease-out forwards;
}

.swoosh {
    position: absolute;
    top: 50%;
    left: 20%;
    width: 40px;
    height: 20px;
    border: solid white;
    border-width: 0 0 8px 8px;
    transform: rotate(-45deg);
    opacity: 0;
    animation: swooshIn 0.5s ease-out 0.3s forwards;
}

@keyframes popIn {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes swooshIn {
    0% { transform: rotate(-45deg) scale(0.5); opacity: 0; }
    100% { transform: rotate(-45deg) scale(1); opacity: 1; }
}

h2 {
    color: #28a745;
}

.back-button {
    display: inline-block;
    padding: 10px 20px;
    background: #28a745;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 20px;
}












.pending {
    background: #ffc107 !important;
    color: black !important;
    cursor: not-allowed !important;
}





.company-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
}


.company-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
  background: white;
  z-index: 10;
  position: sticky;
  
}


.logo {
    max-width: 100px;
    height: auto;
    display: block;
}

.company-info {
    text-align: left;
}

.company-info h2 {
    margin: 0;
    font-size: 20px;
    color: #333;
}

.company-info p {
    margin: 2px 0;
    font-size: 14px;
    color: #666;
}
