:root {
  --primary-color: #08317c;
  --white: #ffffff;
  --light-blue: #e6eeff;
  --hover-blue: #0a3d94;
  --text-secondary: #555;
  --danger-color: #dc3545;
  --success-color: #28a745;
  --input-border-color: #ced4da;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--light-blue);
  color: var(--primary-color);
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  min-height: 100vh;
  height: 100%;
}

header {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.5rem;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  margin: 0;
  font-size: 1rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.back-button {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
  padding: 0.5rem;
  z-index: 2;
}

main {
  flex: 1;
  padding: 1rem;
  width: 75vw;
  min-height: 75vh;
  margin: 1rem auto 2rem auto;
  /* width: 100%; */
  box-sizing: border-box;
  display: flex;      
  justify-content: center;
  align-items: stretch;
  flex-direction: column;
}

.main-title {
 text-align: center;
 margin-bottom: 1.5rem;
 font-size: 1.8rem;
 font-weight: 600;
}

.main-logo {
  max-width: 150px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 1rem auto;
}

.content {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.language-display {
  font-size: 0.9rem;
  background-color: var(--white);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  z-index: 2;
}
.language-display:hover {
  background-color: #d0dfff;
}

.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border-left-color: var(--primary-color);
  animation: spin 1s ease infinite;
  margin: 1rem auto;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#result {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  background-color: var(--light-blue);
  border: 1px solid #ccc;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#result p {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}
.result-message { font-weight: 500; }
.error-message { color: var(--danger-color); font-weight: bold; }
.success-message { color: var(--success-color); font-weight: bold; }
.upi-id-display {
  font-family: monospace;
  font-size: 1.2rem;
  margin: 0.8rem 0;
  font-weight: bold;
  word-break: break-all;
}
#result.verified .upi-id-display,
#result.verified .detail-value,
#result.verified .entity-details {
  color: var(--success-color);
  font-weight: bold;
}

.check-button,
.result-button,
.copy-button,
.option-button,
.action-button {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.2s ease-in-out;
  padding: 0.8rem 2rem;
  min-width: 180px;        
  font-size: 1.1rem;    
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.check-button:hover,
.result-button:hover,
.copy-button:hover,
.option-button:hover,
.action-button:hover {
  background-color: var(--hover-blue);
}

.check-button:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.popup-content {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-height: 80vh;
  overflow-y: auto;
}
.popup-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-secondary);
  padding: 0.5rem;
  border-radius: 50%;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-close:hover {
  background-color: var(--light-blue);
  color: var(--primary-color);
}
.popup-title {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
  padding-right: 2rem;
}
.popup-message {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 1rem;
}

.page-landing .content {
  background-color: transparent;
}

.page-landing .section-title {
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  font-size: 1.3em;
  color: var(--primary-color);
}
.page-landing .section-title:first-of-type { margin-top: 0; }
.page-landing .option-button {
  background-color: var(--white);
  color: var(--primary-color);
  border: none;
  border-left: 5px solid var(--primary-color);
  border-radius: 8px;
  padding: 1.5rem 1rem;
  margin: 1rem 0;
  width: 100%;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
}
.page-landing .option-button:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(8, 49, 124, 0.1);
}
.page-landing .option-button i {
  font-size: 3.2em;
  margin-bottom: 0.5rem;
  color: inherit;
}
.page-landing .option-button span {
  font-size: 1.5em;
  line-height: 1.4;
  color: inherit;
  font-weight: 500;
}
.page-landing .audio-glow {
  animation: audioGlowAnimation 1s infinite alternate;
  box-shadow: 0 0 25px rgba(30, 144, 255, 0.9), 0 0 40px rgba(8, 49, 124, 0.7) !important;
  border: 2px solid rgba(30, 144, 255, 0.8) !important;
}
@keyframes audioGlowAnimation {
  0% { box-shadow: 0 0 15px rgba(30, 144, 255, 0.7), 0 0 25px rgba(8, 49, 124, 0.5) !important; }
  100% { box-shadow: 0 0 35px rgba(30, 144, 255, 1), 0 0 50px rgba(8, 49, 124, 0.9) !important; }
}
.page-landing .speaker-button {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-left: 1rem;
}
.page-landing .speaker-button:hover { background-color: rgba(255, 255, 255, 0.1); }
.page-landing .speaker-button.muted { opacity: 0.5; }
.page-landing .speaker-button i { transition: transform 0.2s ease; }
.page-landing .speaker-button:hover i { transform: scale(1.1); }

.page-manual .manual-input-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.page-manual .upi-input-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.page-manual #upiInput {
  width: 100%;
  max-width: 400px;
  padding: 0.8rem 1rem;
  font-size: 1.1rem;
  border: 1px solid var(--input-border-color);
  border-radius: 6px;
  text-align: center;
}
.page-manual .category-alert,
.page-capture .category-alert {
  background-color: var(--success-color);
  color: var(--white);
  padding: 0.8rem 1.2rem;
  border-radius: 6px;
  margin: 1rem 0;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  font-weight: 500;
  text-align: center;
}
.page-manual .category-alert:hover,
.page-capture .category-alert:hover { background-color: #218838; }

.page-account .account-input-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.page-account .input-group {
  width: 100%;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.page-account .input-label {
  font-weight: 500;
  margin-bottom: 0.4rem;
  font-size: 1rem;
}
.page-account .input-field {
  width: 100%;
  padding: 0.7rem 0.9rem;
  font-size: 1rem;
  border: 1px solid var(--input-border-color);
  border-radius: 6px;
}
.copy-button-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.2rem;
    align-items: center;
}

.page-capture .capture-container { text-align: center; }
.page-capture #videoElement,
.page-capture #imagePreview {
  border-radius: 8px;
  border: 1px solid #ccc;
  margin: 0 auto 1rem auto;
  display: none;
}
.page-capture #videoElement {
  width: 80%;
  max-width: 480px;
}
.page-capture #imagePreview {
  max-width: 100%;
  max-height: 400px;
}
.page-capture .button-group {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
  margin: 1rem 0;
  flex-wrap: wrap;
}
.page-capture .action-button {
  background-color: var(--white);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-left: 5px solid var(--primary-color);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
  width: 180px;
  height: 120px;
  font-weight: 500;
}
.page-capture .action-button:hover {
  background-color: var(--hover-blue);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(8, 49, 124, 0.1);
  border-color: var(--hover-blue);
}
.page-capture .action-button i {
  font-size: 2.5em;
  margin-bottom: 0.3rem;
}
.page-capture .action-button span {
  font-size: 1em;
  line-height: 1.3;
}

@media (max-width: 600px) {
	main {
		width: 95vw;
		min-height: 80vh;
		border-radius: 8px;	
	}
	
  header {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    justify-content: center;
    min-height: 2rem;
  }
  header h1 {
    font-size: 1.5rem;
    position: static;
    transform: none;
    order: 2;
    margin-top: 0.5rem;
  }
  .back-button {
    position: absolute;
    left: 1rem;
    top: 1rem;
    transform: none;
  }
  .language-display {
    position: absolute;
    right: 1rem;
    top: 1rem;
    transform: none;
  }
  main { padding: 1rem; }
  .content { padding: 1.5rem; }
  .check-button {
    width: 80%;
    max-width: 300px;
    justify-content: center;
  }
  .page-capture .button-group {
    flex-direction: column;
    align-items: center;
  }
  .page-capture .action-button {
    width: 80%;
    max-width: 250px;
    height: auto;
    padding: 1.2rem 1rem;
  }
  
  .check-button,
  .result-button,
  .copy-button,
  .option-button,
  .action-button {
    width: 100%;           
    /*max-width: 300px;*/
    justify-content: center; 
  }
  
 .account-input-container input,
 .account-input-container select,
 .account-input-container textarea {
   width: 100%;
   max-width: 100%;
   box-sizing: border-box;
 }

  .language-container {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}
.fa-icon {
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  height: 1em;
  fill: currentColor;
  font-size: inherit;
}

.modal {
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
}

.modal-content {
  background: #e6eeff; 
  padding: 2rem;
  border-radius: 12px; 
  box-shadow: 0 4px 20px rgba(0,0,0,0.15); 
  width: 45vw;
  height: 60vh;
  min-width: 300px;
  max-width: 90vw;
  text-align: center;
  animation: fadeIn 0.3s ease-out;
  overflow: auto;
}

.language-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.language-btn {
   background-color: var(--white);
   color: var(--primary-color);
   border: none; 
   border-left: 5px solid var(--primary-color); 
   border-radius: 8px;
   padding: 1rem;
   font-size: 1.1rem;
   cursor: pointer;
   transition: all 0.3s ease, opacity 0.5s ease;
   text-align: center;
   opacity: 0;
   transform: translateY(10px);
}

.language-btn.visible { 
    opacity: 1;
    animation: fadeInUp 0.5s forwards;
}

.language-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.loading {
    text-align: center;
    margin: 2rem 0;
    color: var(--primary-color);
}

.scramble-container {
    padding: 1rem;
    text-align: center;
    height: auto;
    min-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    font-family: inherit;
}

.dud {
    color: var(--hover-blue);
}
 @keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#result {
 background: #f8faff;
 border: 1px solid #d6e0f5;
 border-radius: 12px;
 padding: 1rem 1rem;
 box-shadow: 0 4px 12px rgba(0,0,0,0.05);
 text-align: center;
 max-width: 500px;
 margin: auto;
 margin-bottom: 1rem;
}
#result.verified .success-message {
 font-size: 1.1rem;
 font-weight: 600;
 /*margin-bottom: 1.5rem;*/
 color: var(--success-color);
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 0.5rem;
}

#result .upi-id-display {
 background: #fff;
 border: 1px dashed #08317c;
 border-radius: 8px;
 padding: 0.8rem 1rem;
 font-family: monospace;
 font-size: 1.2rem;
 font-weight: 600;
 color: #08317c;
/* margin: 0.8rem auto 1.5rem auto;*/
 word-break: break-all;
 display: inline-block;
}

#result .entity-details {
 text-align: left;
 /*margin: 0.3rem auto;*/
 max-width: 350px;
 font-size: 1rem;
 color: #333;
 width: 100%;
}
/*#result .entity-details::before {
 content: "• ";
 color: inherit;
 font-weight: bold;
}*/

#result .category-alert {
 display: inline-block;
 background: var(--success-color);
 color: white;
 padding: 0.5rem 1.2rem;
 border-radius: 20px;
 font-weight: 500;
 margin: 1rem 0 1.5rem 0;
 cursor: pointer;
 transition: background 0.2s ease-in-out;
}
#result .category-alert:hover {
 background: #218838;
}

#result .result-button {
 width: 100%;
 margin-top: 0.8rem;
 font-size: 1rem;
 padding: 0.9rem;
 border-radius: 8px;
 font-weight: 500;
}

@media (min-width: 600px) {
 #result .result-button {
   width: auto;
   min-width: 220px;
   /*margin: 0.8rem 0.5rem;*/
   display: inline-flex;
   justify-content: center;
 }
#name-label,
#reg-no-label {
	color: #08317c;
	font-weight: normal;
}
}

#result small {
 display: block;
 margin-top: 1rem;
 font-size: 0.85rem;
 color: #777;
}

#result .entity-details {
 display: flex;
 justify-content: space-between;
 align-items: center;
 max-width: 350px;
 margin: 0.4rem auto;
 padding: 0.4rem 0;
 /*border-bottom: 1px solid #e0e6f5;*/ 
 font-size: 1rem;
 width: 100%;
}
/*#result .entity-details:last-of-type {
 border-bottom: none;  no line after last item 
}*/
#result .entity-details strong,
#result .entity-details b {
 color: #08317c;
 font-weight: 600;
}

.lower-case-text {
  text-transform: lowercase;
}

#name-label,
#reg-no-label {
	color: #08317c;
	font-weight: normal;
}

.entity-op {
	border: 1px dashed #08317c;
	border-radius: 8px;
	padding: 0.5rem 0.5rem;
	color: var(--success-color);
}

.incorrect-input {
	border: 2px solid #e51313 !important;
}

.captcha-container {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 400px; 
  margin: 10px auto;
  box-sizing: border-box;
}

.captcha-container * {
  box-sizing: border-box;
}

.captcha-container input,
.m-captcha-container input {
  flex: 0 0 50%;
	width: 100%;
  /* max-width: 400px; */
  padding: 0.7rem 0.9rem;
  font-size: 1.0rem;
  border: 1px solid var(--input-border-color);
  border-radius: 6px;
  text-align: center;
}
.captcha-container input:focus,
.m-captcha-container input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.captcha-container img {
  flex: 0 0 40%;
  height: 50px;
  display: block;
  /* border: 1px solid #d1d5db; */
  border-radius: 10px;
  object-fit: contain;
  background: #fff;
}

.captcha-buttons {
  flex: 0 0 10%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

.captcha-container button {
  background: none;
  border: 1px solid #d1d5db;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.captcha-container button:hover {
  border-color: #2563eb;
  transform: translateY(-1px);
}
.captcha-container button:active {
  transform: translateY(0);
}

@media (max-width: 600px) {
  .captcha-container {
    flex-direction: column;
    align-items: stretch;
  }

  .captcha-top {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .captcha-container img {
    flex: 0 0 70%;
    height: 60px;
  }

  .captcha-buttons {
    flex: 0 0 30%;
    flex-direction: row;   
    justify-content: center;
    gap: 10px;
  }

  .captcha-container input {
    width: 100%;
    flex: none;
  }

  .captcha-container button {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

.captcha-block {
  position: relative;    
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  gap: 6px;
}

.captcha-loader {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  display: none;       
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
  font-size: 14px;
  font-weight: bold;
  gap: 8px;
  z-index: 5;
  border-radius: 6px;
}

.spinner {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #3b82f6;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}
.captcha-container button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}
.captcha-container input:disabled {
  background-color: #f3f4f6;
  cursor: not-allowed;
  opacity: 0.7;
}

.thumbsUp {
  display: inline-block;
  width: 1.3em;    
  height: 1.3em;
  background-image: url("thumbsUp.ico"); 
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: -0.125em; 
}

.thumbsDown {
  display: inline-block;
  width: 1.3em;    
  height: 1.3em;
  background-image: url("thumbsDown.ico"); 
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: -0.125em; 
}

.modal-overlay {
  display: none; 
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 999;
}

.modal-box {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  width: 300px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.modal-header {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;

}

.close-btn {
  float: right;
  cursor: pointer;
  font-weight: bold;
}

.m-captcha-container {
  width: 100%;              
  max-width: 100%;          
  display: flex;
  flex-direction: column;
  gap: 1rem;                
  font-family: Arial, sans-serif;
}

.m-input-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.m-captcha-label {
  flex: 0 0 auto;           
  font-size: 14px;
  font-weight: 500;
  color: #333;
}

.m-input-group input {
  flex: 1;                  
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.2s ease;
}

.m-input-group input:focus {
  border-color: #007bff;
  outline: none;
}

.m-captcha-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
}

.m-captcha-block img {
  flex: 0 0 80%;            
  max-width: 80%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.m-captcha-buttons {
  flex: 0 0 20%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.m-captcha-buttons button,
.close-btn2 {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #f5f5f5;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s ease;
}

.m-captcha-buttons button:hover,
.close-btn2:hover {
  background: #e0e0e0;
}


@media (max-width: 600px) {
  .m-captcha-block {
    flex-direction: column;
    align-items: center;
  }

  .m-captcha-block img {
    flex: 0 0 auto;
    max-width: 100%;
  }

  .m-captcha-buttons {
    flex-direction: row; 
    justify-content: center;
    flex: 0 0 auto;
    margin-top: 0.5rem;
  }
}

.validationResultLabel {
	font-size: 1.8rem !important;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;                              
  /*align-items: start;*/
  padding: 6px 0;
}

.label {
  text-align: right;
  white-space: nowrap;     
  font-weight: 600;
}

.value {
  text-align: left;
  overflow-wrap: anywhere; 
  /*color: #222;*/
}

.boxed {
  display: inline-block;
  border: 1px dashed #08317c;
  padding: 4px 8px;
  white-space: normal; 
  word-break: break-word;
  max-width: 200px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}