/* japanese-style.css */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

body {
    font-family: 'Noto Sans JP', sans-serif;
    background-color: #f0f0f0;
    color: #333;
}

.sidebar {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 20px;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    width: 250px;
}

.main-content {
    margin-left: 250px;
    padding: 20px;
}

.btn-primary {
    background-color: #3498db;
    border-color: #3498db;
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}

.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-header {
    background-color: #34495e;
    color: #ecf0f1;
}

.logo {
    max-width: 150px;
    margin-bottom: 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
}
.ptz-controls {
    background-color: #ecf0f1;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.ptz-row {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.ptz-row .btn {
    margin: 0 5px;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ptz-row .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}