@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap");

body {
	font-family: "Roboto", Arial, Helvetica, sans-serif;
	margin: 0;
	background: #111;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.fa-magnifying-glass {
	color: white;
}

.flex-center {
	display: flex;
	justify-content: center;
}

.header-center {
	align-items: center;
	flex-direction: column;
	margin-top: 10%;
}

.left-margin {
	margin: 0px 16px;
}

#uv-frame {
	border: none;
	width: 100vw;
	height: calc(100vh - 50px);
	background-color: #ffffff;
}

#uv-error {
	color: #ff6666 !important;
	white-space: pre-wrap;
}

#uv-error-code {
	font-size: 12px;
	color: #fff;
	font-family: "Courier New", Courier, monospace;
}

.logo {
	width: 150px;
	height: 150px;
}

.logo-wrapper h1 {
	color: white;
}

.desc p {
	width: 560px;
	text-align: center;
	color: rgba(253, 253, 253, 0.514);
}

#uv-form {
    display: flex;
    gap: 10px;
}

#uv-search-engine {
    background: #222;
    color: #fff;
    border: 1px solid rgb(255, 255, 255, 0.2);
    padding: 0 15px;
    border-radius: 50px;
    outline: none;
    cursor: pointer;
}

#uv-address {
	background: none;
	font-family: inherit;
	padding: 0px 17px;
	height: 48px;
	border: 1px solid rgb(255, 255, 255, 0.2);
	color: #fff;
	border-radius: 50px;
	outline: none;
	width: 350px;
	transition: border-radius 0.1s;
}

#uv-address:focus {
	border: 1px solid rgba(253, 253, 253, 0.514);
}

.quick-links {
    margin-top: 25px;
    gap: 15px;
}

.quick-btn {
    background-color: #222;
    color: white;
    border: 1px solid #444;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.2s;
}

.quick-btn:hover {
    background-color: #444;
}

/* Stealth Toolbar CSS */
#proxy-browser {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.proxy-toolbar {
    height: 50px;
    background-color: #202124;
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 10px;
    border-bottom: 1px solid #000;
}

.proxy-toolbar button {
    background: transparent;
    border: none;
    color: #9aa0a6;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.proxy-toolbar button:hover {
    background: #3c4043;
    color: #fff;
}

#proxy-url-bar {
    flex-grow: 1;
    height: 30px;
    background: #171717;
    border: 1px solid #3c4043;
    color: #fff;
    border-radius: 15px;
    padding: 0 15px;
    outline: none;
    font-size: 14px;
}

#proxy-url-bar:focus {
    border-color: #8ab4f8;
}

#proxy-go {
    width: auto;
    border-radius: 15px;
    padding: 0 15px;
    font-size: 14px;
}

#proxy-loader {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 50px);
    background: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #222;
    border-top: 5px solid #8ab4f8;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#proxy-loader p {
    color: #8ab4f8;
    font-size: 16px;
    margin-top: 20px;
}
