@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

body {
	font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	margin: 0;
	padding: 0;
}

main {
    width: 80vw;
    margin-left: 10vw;
    margin-right: 10vw;
    min-height: 70vh;
    box-sizing: border-box;
    padding-top: 0;
    padding-bottom: 0;
}

/* Video Background Styling */
.video-bg-container {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    min-height: 60vh;
    height: 60vh;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background: rgba(0,0,0,0.55); /* darker overlay */
    z-index: 2;
}

.video-bg-content {
    position: relative;
    z-index: 3;
    width: 80vw;
    margin-left: 10vw;
    margin-right: 10vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6vh 0;
    margin-top: 5vh; /* moved higher on the page */
}

.video-bg-gap {
    height: 0 !important;
    width: 100%;
    min-height: 0 !important;
    max-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Fullpage Video Background */
.video-bg-container.fullpage-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    min-height: 0;
    max-width: 100vw;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.video-bg.fullpage-bg {
    height: 100%;
    min-height: 0;
    max-height: none;
}

.video-bg-content.fullpage-center {
    position: relative;
    top: 16vh;
    left: 0;
    width: 100vw;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
    z-index: 3;
}

/* Search Console Styling */
.vrc-search-console {
    background: rgba(255,255,255,0.55);
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08), 0 1.5px 4px rgba(0,0,0,0.08);
    border: 1px solid #e5e5e5;
    padding: 1.5rem 2rem 1.2rem 2rem;
    max-width: 100%;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.80);
    transition: transform 0.2s;
}

.vrc-search-title {
    color: #222;
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 1.1rem 0;
    text-align: center;
    letter-spacing: 1px;
}

.vrc-search-content form {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
    justify-content: center;
}

.vrc-search-content label {
    color: #444;
    font-size: 0.97rem;
    margin-bottom: 0.25rem;
    display: block;
}

.vrc-search-content input[type="text"],
.vrc-search-content input[type="date"],
.vrc-search-content input[type="time"],
.vrc-search-content select,
.vrc-search-content textarea {
    background: #fafbfc;
    border: 1px solid #bbb;
    border-radius: 5px;
    color: #222;
    padding: 0.6rem 0.9rem;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.vrc-search-content input[type="text"]:focus,
.vrc-search-content input[type="date"]:focus,
.vrc-search-content input[type="time"]:focus,
.vrc-search-content select:focus,
.vrc-search-content textarea:focus {
    outline: none;
    border-color: #222;
}

.vrc-search-content input[type="submit"],
.vrc-search-content button[type="submit"] {
    background: #bd0707;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 0.7rem 1.7rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background 0.2s, color 0.2s;
}

.vrc-search-content input[type="submit"]:hover,
.vrc-search-content button[type="submit"]:hover {
    background: #444;
    color: #fff;
}

/* Compact form layout */
.vrc-search-content .form-group,
.vrc-search-content > div > div {
    flex: 1;
    min-width: 180px;
}

/* Hide original plugin heading */
.vrc-search-content h3 {
    display: none !important;
}

/* Fleet Button */
.fleet-btn {
    margin-top: 1.5rem;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.6rem 1.3rem;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.1s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    display: block;
}

.fleet-btn:hover {
    background: #444;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
}

/* CSS for homepage */ 

@media screen and (max-width: 900px) {
    .video-bg-content,
    .vrc-search-console,
    .vrc-search-content,
    .plugin-container,
    .vrcdivsearch {
        max-width: 100%;
        width: 100%;
        height: 80vh !important;
    }
}
 