/* Basic styling for email list */
#cpanel-imap-email-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cpanel-imap-email {
    border: 1px solid #eee;
    margin-bottom: 15px;
    padding: 15px;
    background-color: #fff;
    border-radius: 5px;
}

.email-subject {
    font-size: 1.1em;
    color: #333;
}

.email-from, .email-date {
    font-size: 0.9em;
    color: #666;
}

/* Style for the body container */
.email-body-container {
    margin-top: 10px;
    line-height: 1.6;
    word-wrap: break-word; /* Prevent long words/URLs from overflowing */
}

/* Style for the excerpt */
.email-body.excerpt {
    /* Inherits base styles from email-body-container */
}

/* Style for the full content - important for hiding */
.email-body.full-content {
    /* Inherits base styles from email-body-container */
}

/* Class to hide elements - used by JavaScript */
.cpanel-imap-email .hidden {
    display: none;
}

/* Style for the Read More link */
.read-more {
    margin-left: 5px;
    text-decoration: none;
    color: #0073aa; /* WordPress primary color */
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

/* Pagination styles */
.cpanel-imap-pagination {
    margin-top: 20px;
    text-align: center;
}

.cpanel-imap-pagination .page-numbers {
    margin: 0 5px;
    padding: 5px 10px;
    border: 1px solid #eee;
    text-decoration: none;
    color: #333;
    border-radius: 3px;
}

.cpanel-imap-pagination .page-numbers.current {
    background-color: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

.cpanel-imap-pagination .page-numbers:hover {
    background-color: #f0f0f0;
}

.cpanel-imap-pagination .page-numbers-info {
    margin: 0 10px;
    font-style: italic;
    color: #555;
}