* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    width: 100%;
    height: 100vh;
    background-color: #f5f7fa; /* subtle light gray */
    color: #22223b; /* rich dark blue */
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-container {
    width: 100%;
    max-width: 600px;
    height: 200px;
    border: 2px solid #c9ada7; /* muted mauve */
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 24px rgba(34, 34, 59, 0.08);
    border-radius: 12px;
}

.slide-box {
    width: 100%;
    height: 100%;
    border: 1px solid #9a8c98; /* soft purple */
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8f9fa;
    border-radius: 12px;
}

.left-side {
    background-color: #4a4e69; /* deep indigo */
    color: #f2e9e4; /* light cream */
    width: 15rem;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2rem;
    gap: 20px;
    border-right: 3px solid #22223b; /* rich dark blue */
    border-radius: 12px 0 0 12px;
}

.username {
    font-size: 1rem;
    font-weight: 600;
    color: #f2e9e4;
}

.right-side {
    background-color: #f2e9e4; /* light cream */
    color: #22223b;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2rem;
    gap: 20px;
    border-radius: 0 12px 12px 0;
}

.message {
    font-size: 1rem;
    font-weight: 500;
    color: #22223b;
}

.slide-box img {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    border: 2px solid #c9ada7;
    background: #fff;
}
