        body {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 50vh;
            background-color: #f0f0f0;
            flex-direction: column;
        }
        .lamp-container {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .lamp {
            width: 100px;
            height: 100px;
            cursor: pointer;
            margin: 10px;
            transition: transform 0.2s;
        }
		.iconm {
            width: 80px;
            height: 80px;
            cursor: pointer;
            margin: 5px;
            transition: transform 0.2s;
        }
		.icons {
            width: 60px;
            height: 60px;
            cursor: pointer;
            margin: 5px;
            transition: transform 0.2s;
        }
		.ref {
            width: 80px;
            height: 80px;
            cursor: pointer;
            margin: 10px;
            transition: transform 0.2s;
        }
        .lamp:hover {
            transform: scale(1.1);
        }
		.icons:hover {
            transform: scale(1.25);
        }
		.timeBox {
			margin-bottom: 20px;
		}
		.timeBox input {
			margin-left: 5px;
			width: 55px;
			font-size: 16px;
			padding: 5px; 
			text-align: center;
		}
		.big-button {
			cursor: pointer;
			font-size: 20px;
			padding: 10px 20px;
			border-radius: 8px;
		}		
		.mid-button {
			cursor: pointer;
			font-size: 18px;
			padding: 8px 16px;
			border-radius: 8px;
		}