/* Styles for Gmail App */
#app-gmail {
    background-color: #1f1f1f;
    color: #e8eaed;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.gmail-header {
    padding: 55px 15px 10px 15px;
    background-color: #1f1f1f;
    position: sticky;
    top: 0;
    z-index: 3;
}

.gmail-search-bar {
    display: flex;
    align-items: center;
    background-color: #303134;
    border-radius: 24px;
    padding: 8px 12px;
    height: 48px;
    box-sizing: border-box;
}

.gmail-menu-icon {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e8eaed'%3E%3Cpath d='M3 18h18v-2H3v2zm0-5h18v-2h-18v2zm0-7v2h18V6h-18v2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 16px;
    cursor: pointer;
}

.gmail-search-bar input {
    flex-grow: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    color: #e8eaed;
    outline: none;
}

.gmail-search-bar input::placeholder {
    color: #9aa0a6;
}

.profile-avatar-gmail {
    width: 32px;
    height: 32px;
    background-color: #4caf50;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    margin-left: 16px;
    cursor: pointer;
}

.gmail-content {
    padding: 0 15px;
    overflow-y: auto;
    flex-grow: 1;
}

.gmail-inbox-label {
    font-size: 12px;
    font-weight: 700;
    color: #9aa0a6;
    text-transform: uppercase;
    margin: 10px 0 15px;
    padding-left: 5px;
}

.no-emails-message.hidden, .email-list.hidden {
    display: none;
}

.no-emails-message {
    text-align: center;
    color: #9aa0a6;
    padding-top: 50px;
    font-size: 16px;
}

.email-list {
    display: flex;
    flex-direction: column;
}

.email-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    cursor: pointer;
}
.email-item:not(:last-child) {
    border-bottom: 1px solid #3c4043;
}

.email-avatar-container {
    margin-right: 15px;
}

.email-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}

.email-details {
    flex-grow: 1;
    overflow: hidden;
    line-height: 1.4;
}

.email-sender {
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
}

.email-subject,
.email-snippet {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #9aa0a6;
}

.email-subject {
    color: #e8eaed;
}

.email-meta {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    margin-left: 10px;
}

.email-time {
    font-size: 12px;
    color: #9aa0a6;
    white-space: nowrap;
}

.email-star {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239aa0a6'%3E%3Cpath d='M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V6c0-1.1.9-2 2-2zm-1.6 14H5.6c-.33 0-.6-.27-.6-.6V8.9l6.54 4.09c.35.22.81.22 1.16 0L20 8.9V17.4c0 .33-.27.6-.6.6zM20 6l-8 5-8-5h16z'/%3E%3C/svg%3E");
    background-size: contain;
}

.gmail-fab {
    position: absolute;
    bottom: 100px;
    right: 20px;
    background-color: #c2e7ff;
    color: #001d35;
    border-radius: 16px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    cursor: pointer;
    z-index: 4;
}

.pencil-icon {
     width: 24px;
     height: 24px;
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23001d35'%3E%3Cpath d='M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-1.6 14H5.6c-.33 0-.6-.27-.6-.6V8.9l6.54 4.09c.35.22.81.22 1.16 0L20 8.9V17.4c0 .33-.27.6-.6.6zM20 6l-8 5-8-5h16z'/%3E%3C/svg%3E");
     background-size: contain;
}

.gmail-bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    background-color: #303134;
    border-top: 1px solid #5f6368;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 80px;
    padding-top: 10px;
    z-index: 2;
}

.gmail-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #9aa0a6;
    cursor: pointer;
}

.gmail-bottom-nav .nav-item.active {
    color: #c2e7ff;
}

.gmail-bottom-nav .nav-item .mail-icon, .chat-icon, .spaces-icon, .meet-icon {
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
}
.mail-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239aa0a6'%3E%3Cpath d='M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V6c0-1.1.9-2 2-2zm-1.6 14H5.6c-.33 0-.6-.27-.6-.6V8.9l6.54 4.09c.35.22.81.22 1.16 0L20 8.9V17.4c0 .33-.27.6-.6.6zM20 6l-8 5-8-5h16z'/%3E%3C/svg%3E"); }
.chat-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239aa0a6'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-1.6 14H5.6c-.33 0-.6-.27-.6-.6V8.9l6.54 4.09c.35.22.81.22 1.16 0L20 8.9V17.4c0 .33-.27.6-.6.6zM20 6l-8 5-8-5h16z'/%3E%3C/svg%3E"); }
.spaces-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239aa0a6'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM8 17.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E"); }
.meet-icon { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%239aa0a6'%3E%3Cpath d='M17 10.5V7c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1v10c0 .55.45 1 1 1h12c.55 0 1-.45 1-1v-3.5l4 4v-11l-4 4z'/%3E%3C/svg%3E"); }

.gmail-bottom-nav .nav-item.active .mail-icon {
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c2e7ff'%3E%3Cpath d='M22 6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V6c0-1.1.9-2 2-2zm-1.6 14H5.6c-.33 0-.6-.27-.6-.6V8.9l6.54 4.09c.35.22.81.22 1.16 0L20 8.9V17.4c0 .33-.27.6-.6.6zM20 6l-8 5-8-5h16z'/%3E%3C/svg%3E");
}