body {
  background: #f5fbff;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* MAIN CONTAINER */
.container {
  width: 90%;
  margin: auto;
  margin-top: 40px;
}

/* COMPANY NAME CENTER */
.company {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 35px;
}

/* FIRST ROW (LEFT + RIGHT SIDE) */
.row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* LEFT SIDE CONTROLS */
.left-side {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* RIGHT SIDE CONTROLS */
.right-side {
  display: flex;
  align-items: center;
  gap: 22px;
}

/* RIGHT SIDE SMALLER ELEMENTS */
.right-side .dropdown {
    width: 180px;        /* smaller width */
    height: 36px;        /* smaller height */
    font-size: 15px;
}


/* SMALLER Select Bank (left side only) */
.left-side #cmbBank {
    width: 180px;      /* reduced width */
    height: 36px;      /* reduced height */
    font-size: 15px;
    padding: 4px;
}

/* Smaller POST TO TALLY button */
.right-side .post-btn {
    padding: 10px 24px;  /* reduce size */
    font-size: 16px;
    border-radius: 6px;
}

/* LABEL + DROPDOWN */
.section {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* DROPDOWN BIG SIZE */
.dropdown {
  width: 220px;
  height: 40px;
  font-size: 16px;
  padding: 5px;
}

/* UPLOAD PDF BUTTON */
.upload-btn {
  background: #d60000;
  color: white;
  border: none;
  height: 40px;
  padding: 15px 24px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 20px;   /* 👈 moves button slightly down */
}

.upload-btn:hover {
  opacity: 0.85;
}

/* POST TO TALLY BIG GREEN */
.post-btn {
  background: #0ebdf1;
  color: rgb(255, 255, 255);
  border: none;
  padding: 13px 34px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
}
.post-btn:hover {
  opacity: 0.85;
}
/* Reduce POST TO TALLY button size */
#postBtn {
    padding: 8px 22px;     /* smaller height + width */
    font-size: 15px;       /* slightly smaller text */
    border-radius: 6px; 
    width: 150px;   /* smaller rounded edges */
}
.tally-logo-in-button {
  width: 50px;     /* smaller size */
  height: 30px;    /* keep square size */
  object-fit: contain;
  margin-right: 6px;   /* small gap between image and text */
}
.show-btn {
    background: #008CBA;
    color: white;
    border: none;
    height: 32px;
    padding: 8px 16px;
    
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 8px; /* keeps it near Upload PDF button */
    margin-top: 23px;
}
.show-btn:hover {
    opacity: 0.85;
}