a:hover,
.email-item:hover,
area:hover {
    cursor: url("https://ramisabouni.com/CBSA/images/large_cursor.png") 20 20, auto;
}
			
.mail-window {
    width: 100%;
    max-width: 1100px;
    height: 650px;
    display: flex;
    background: #f5f5f5;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.25);
}

.mail-sidebar {
    width: 34%;
    background: #f2f2f2;
    border-right: 1px solid #ccc;
    overflow-y: auto;
}
.email-item {
    padding: 0.4em 0.5em;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    color: #222;
}

.email-item h4 {
    margin: 0;
    font-size: 1.2em;
}

.email-item p {
    margin: 0.2em 0 0;
    font-size: 1.2em;
    color: #666;
}

.email-item:hover {
    background: #e8e8e8;
}

.email-item.active {
    background: #007aff;
    color: white;
}

.email-item.active p {
    color: white;
}

.mail-content {
    width: 66%;
    background: white;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
}

.mail-content img {
    width: 100%;
    height: auto;
    display: block;
}


.laptop-mail-container {
    position: relative;
    width: 100%;
/*     max-width: 1366px;   /* original image width */ */
    margin: 0 auto;
}

.laptop-bg {
    width: 100%;
    height: auto;
    display: block;
}

/* This is the laptop screen area */
.mail-window {
    position: absolute;

    left: 21.5%;
    top: 5%;

    width: 59%;
    height: 70%;

    display: flex;
    flex-direction: column;

    background: #f5f5f5;
    border-radius: 0.6vw;
    overflow: hidden;
    box-shadow: none;

    font-size: clamp(5px, 0.65vw, 11px);
} 

.mail-topbar {
    height: 6%;
    background: #ececec;
    border-bottom: 1px solid #ccc;

    display: flex;
    align-items: center;
    gap: 0.6em;

    padding: 0 0.8em;
    flex-shrink: 0;
}

.dot {
    width: 0.8em;
    height: 0.8em;
    border-radius: 50%;
    display: inline-block;
}

.red { background: #ff5f57; }
.yellow { background: #ffbd2e; }
.green { background: #28c840; }

.mail-title {
    flex: 1;
    font-weight: bold;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mail-icon {
    font-size: 1em;
    color: #333;
}

.mail-body {
    height: 88%;
    display: flex;
    overflow: hidden;
}

.mail-sidebar {
    width: 34%;
}

.mail-content {
    width: 66%;
}