@charset "UTF-8";

:root {
    --accent: #0088AE;
    --accent-light: #02A4D1;
    --bg: #f9fafb;
    --card-bg: #fff;
    --text: #111827;
    --border: #e5e7eb;
    --radius: 10px;
    --transition: all 0.2s ease;
}

@font-face {
	font-family: 'Roboto';
	font-style: normal;
	font-weight: normal;
	src: url('./Roboto-Regular.ttf');
}

html, body {
    margin: 0;
    font-family: Roboto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
  
* {
    box-sizing: border-box;
    /* outline: 1px solid red; */
  }  

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    height: 40px;
    padding: 0 1rem;

    background: var(--accent);
    color: white;
}

/* main layout */
.content {
    display: flex;
    overflow: auto;
}

/* left + right boxes */
.left {
    flex: 1;
    padding: 0px 10px 50px 20px;
}

.right {
    flex: 1;
    padding: 0px 20px 50px 10px;
}

.gray {
    padding: 10px 20px 20px 20px;
    background: #eee;

    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.title {
    display: flex;
    align-items: center;
    justify-content: center;
  
    color: #045D7D;
    margin: 1.5em 0;
    font-size: 2em;
}

.title-logo {
    height: 1.5em;
    margin-right: 0.5em;
}

label {
    font-weight: 600;
    margin-top: 1em;
    display: block;
}

input[type="text"], select, input[type="file"] {
    width: 100%;
    padding: 0.6em;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-top: 0.4em;
    box-sizing: border-box;
    font-size: 0.95em;
}

button {
    background: var(--accent);
    color: white;
    border: none;
    padding: 0.8em 1.2em;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 1em;
    margin-top: 1em;
    transition: var(--transition);
}

button:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
}

.copy-button {
    font-size: 0.8em;
    margin-top: 0em;
}

.text-button {
    background: none;
    border: none;
    margin: 0;
  
    color: inherit;
    font: inherit;
  
    cursor: pointer;
    transition: var(--transition);
  }

#status, #result {
    margin-top: 1em;
    font-size: 0.95em;
}

.footer {
    margin-top: auto;
  
    display: flex;
    align-items: center;
    justify-content: space-between;
  
    height: 40px;
    padding: 0 1rem;
  
    font-size: 0.9rem;
    color: #000;
}
  
.footer-left a {
    margin-right: 1rem;
    text-decoration: none;
    color: inherit;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo {
    height: 24px;
}
