.defaultTable {
    width: auto;
    background: #ffffff0d;
    padding: 15px;
    font-size: 14px;
    display: inline-block;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    max-width: 655px;
}

.rowItem {
    display: flex;
    border-bottom: 1px solid #ffffff14;
    align-items: center;
}

.rowItem>div:first-of-type {
    width: 220px;
    border-right: 1px solid #ffffff14;
    padding: 8px;
}

.rowItem input {
    border: none;
    padding: 5px;
    margin-left: 5px;
    border-radius: 4px;
    width: 50px;
    transition: all .5s;
    background: none;
    color: #999;
}

.rowItem:last-of-type {
    border: none;
}

.rowItem input:focus {
    border: none;
    background: #2196f330;
    box-shadow: none;
    outline: none;
}

.defaultTable>div {
    margin-right: 25px;
}

.settingsSection {
    background: #ffffff0d;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.gmailStatus {
    margin-top: 15px;
}

.gmailStatus .statusRow {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.gmailStatus .statusRow i {
    margin-right: 10px;
}

.gmailStatus .ti-check {
    color: #4CAF50;
}

.gmailStatus .ti-close {
    color: #F44336;
}

.gmailStatus .lastSync {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 15px;
}

.gmailActions {
    display: flex;
    gap: 10px;
}

.gmailStatus .button.syncing {
    opacity: 0.7;
    cursor: wait;
}