* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 20px;
}

h1 {
    font-size: 2rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.device-card {
    background-color: rgba(255, 255, 255, .1);
    border: 1px solid white;
    border-radius: 15px;
    padding: 20px;

    .device-name {
        text-align: center;
        font-size: 25px;
        margin-bottom: 10px;
    }

    .device-photo {
        width: 200px;
        height: 200px;
        background-size: cover;
        border-radius: 5px;
    }

    .device-status {
        text-align: center;
        margin-bottom: 10px;
    }

    .btn-conectar-wrapper {
        text-align: center;

        button {
            cursor: pointer;
            padding: 10px 20px;
        }
    }
}




#cameraCanvas {
    background-color: #000;
    border: 2px solid #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    max-height: 600px;
    width: 100%;
    height: auto;
}

