/* Settings Page Layout Styles */
.mementor-tts-wrap {
    background: transparent;
    padding: 0;
}

.mementor-tts-main {
    width: 100%;
}

/* Grid container for 1/3 - 2/3 layout */
.mementor-tts-grid-container {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-spacing: 20px 0;
    margin-bottom: 20px;
}

.mementor-tts-grid-item {
    display: table-cell;
    vertical-align: top;
}

.mementor-tts-grid-item.one-third {
    width: 33.333%;
}

.mementor-tts-grid-item.two-thirds {
    width: 66.666%;
}

/* Section styles */
.mementor-tts-section {
    background: #fff;
    border: 1px solid #ccd0d4;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
    margin-bottom: 20px;
}

.mementor-tts-section-header {
    background: #fff;
    border-bottom: 1px solid #ccd0d4;
    padding: 10px 20px;
}

.mementor-tts-section-header h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.mementor-tts-section-content {
    padding: 20px;
}

/* Welcome section specific */
.mementor-tts-welcome-content {
    text-align: center;
}

/* Responsive */
@media (max-width: 782px) {
    .mementor-tts-grid-container {
        display: block;
    }
    
    .mementor-tts-grid-item {
        display: block;
        width: 100% !important;
        margin-bottom: 20px;
    }
}