body {
            font-family: Arial, sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            background: linear-gradient(to right, #4facfe, #00f2fe);
            color: white;
            text-align: center;
            padding: 20px;
            box-sizing: border-box;
        }
        h1 {
            font-size: 30px;
            font-weight: bold;
            margin-bottom: 30px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        .button-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
            width: 100%;
            max-width: 300px;
        }
        .button {
            background: #ff4b5c;
            color: white;
            padding: 15px;
            border-radius: 8px;
            text-decoration: none;
            font-size: 18px;
            font-weight: bold;
            text-align: center;
            transition: 0.3s ease-in-out;
        }
        .button:hover {
            background: #e63946;
            transform: scale(1.08);
        }
        
        #peerIdDisplay {
            margin-top: 15px;
            font-size: 16px;
            background: rgba(0, 0, 0, 0.3);
            padding: 12px;
            border-radius: 8px;
            word-break: break-word;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
            margin-bottom: 25px; /* Added space between ID and video */
        }
        .video-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 15px;
            width: 100%;
            max-width: 900px;
        }
        video {
            width: 100%;
            max-width: 420px;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            background: black;
        }
        .controls {
            margin-top: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            width: 100%;
            max-width: 400px;
        }
        input, button {
            padding: 12px;
            width: 100%;
            border: none;
            border-radius: 8px;
            font-size: 16px;
        }
        button {
            background: #ff4b5c;
            color: white;
            cursor: pointer;
            font-weight: bold;
            transition: 0.3s ease-in-out;
        }
        button:hover {
            background: #e63946;
            transform: scale(1.08);
        }
        .status {
            margin-top: 10px;
            font-size: 14px;
        }
        @media (min-width: 600px) {
            .video-container {
                flex-wrap: nowrap;
            }
            video {
                width: 48%;
            }
        }
		.chat-container {
            width: 100%;
            max-width: 600px;
            height: 400px;
            background: rgba(0, 0, 0, 0.3);
            border-radius: 10px;
            padding: 10px;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 5px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }
        .message {
            background: white;
            color: black;
            padding: 8px 12px;
            border-radius: 8px;
            max-width: 80%;
            align-self: flex-start;
        }
        .message.self {
            background: #ff4b5c;
            color: white;
            align-self: flex-end;
        }
        .controls {
            margin-top: 15px;
            display: flex;
            gap: 10px;
            width: 100%;
            max-width: 600px;
        }
        input, button {
            padding: 12px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
        }
        input {
            flex: 1;
        }
		.back-button {
            margin-top: 20px;
            background: #333;
            color: white;
            padding: 10px 20px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
        }
		.back-button:hover {
            background: #555;
        }