body {
    background-color: #f0e6d6;
    font-family: 'Segoe Script', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

.weasley-clock {
    position: relative;
    height: 700px;
    width: 700px;
    background: url('clock-face.png') no-repeat center center; /* Use a custom image for the clock face */
    border-radius: 60%;    
    background-size: contain;
}

.clock-face {
    position: relative;
    width: 100%;
    height: 100%;
}

.location {
    position: absolute;
    transform-origin: 50% 50%;
    font-size: 1.2em;
    font-weight: bold;
}

/* Position labels around the clock face (example) */
.home { top: 5%; left: 45%; }
.work { top: 15%; right: 15%; transform: rotate(45deg); }
.school { top: 45%; right: 5%; transform: rotate(90deg); }
.travel { bottom: 15%; right: 15%; transform: rotate(135deg); }
.mortal-peril { bottom: 5%; left: 30%;}
.hospital { bottom: 15%; left: 15%; transform: rotate(225deg); }
.lost { bottom: 45%; left: 15%; transform: rotate(270deg); }
.market { top: 15%; left: 15%; transform: rotate(315deg); }
/* Add positioning for other locations */

.hand {
    position: absolute;
    left: 50%;
    bottom: 50%;
    width: 5px;
    height: 250px;
    background-color: #daa520; /* Golden color */
    transform-origin: bottom center;
    transition: transform 1s ease-in-out;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

#hand-molly { height: 200px; }
#hand-arthur { height: 210px; }
#hand-ron { height: 180px; }

/* Status panel styling
.status-panel {
    margin-top: 20px;
    padding: 20px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 400px;
    text-align: left;*/
}

