.plugin-not-required {
    opacity: 0.4;
}

#cool-plugins-container {
    display: inline-block;
    margin: 15px auto;
    padding: 0;
    box-sizing: border-box;
    width: calc(100% - 20px);
    background: #fff;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px -5px #afafaf;
    overflow: hidden;
}

#cool-plugins-container * {
    box-sizing: border-box;
}

#cool-plugins-container .button {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    height: 24px;
    line-height: 22px;
    min-height: 24px;
}

.cool-plugins-polylang-addons .cool-header {
    background-color: #1bb95a;
    background: linear-gradient(to right, #1bb95a, #66cb8e);
    padding: 20px 10px;
    margin: 0;
    display: inline-block;
    width: 100%;
}

.cool-plugins-polylang-addons .cool-header h2 {
    color: #fff;
    display: inline-block;
    padding: 0;
    margin: 0;
    vertical-align: middle;
    width: auto;
}

.cool-plugins-polylang-addons .cool-header a.button {
    float: right;
    margin: 0 5px;
}

.cool-body-left {
    display: inline-block;
    width: calc(100% - 231px);
    vertical-align: top;
    padding: 10px;
    border-right: 1px solid #ddd;
}

.cool-body-right {
    display: inline-block;
    width: 230px;
    vertical-align: top;
    float: right;
    padding: 10px;
}

.cool-body-right ul li {
    list-style: square;
    margin-left: 15px;
}

.cool-body-left h3 {
    padding: 0 0 10px;
    margin: 0 0 15px;
    border-bottom: 1px solid #ddd;
}

.cool-body-left .plugins-list {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
}

.cool-body-left .plugin-block {
    display: inline-block;
    width: calc(50% - 2px);
    padding: 0 10px 30px;
}

.cool-body-left .plugin-block-inner {
    display: inline-flex;
}

.plugin-info {
    padding-left: 10px;
}

.plugin-logo img {
    width: 72px;
    height: 72px;
}

h4.plugin-title {
    margin: 0 0 3px;
    font-size: 14px;
}

.plugin-desc {
    color: #a0a0a0;
    font-size: 12px;
}

.plugin-stats {
    display: inline-flex;
    margin-top: 10px;
    justify-content: center;
}

#cool-plugins-container .plugin-stats * {
    border-radius: 0;
    height: 24px;
    line-height: 22px;
    min-height: 24px;
}

.plugin-version {
    background: #1bb95a;
    border: 1px solid #139648;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 0 3px;
}

span.plugin-update-available {
    padding: 0 5px;
    color: #d21e01;
    font-size: 12px;
    font-weight: bold;
}

@media only screen and (max-width: 600px) {
    .cool-body-left,
    .cool-body-right {
        width: 100%;
    }
    .cool-body-left .plugin-block {
        width: 100%;
        padding: 0 0 30px;
    }
}

/* Tab functionality */
.lsep-nav-tab-wrapper {
    margin-bottom: 20px;
}

.lsep-nav-tab {
    cursor: pointer;
    text-decoration: none;
}

.nav-tab-active {
    background-color: #fff;
    border-bottom-color: #fff;
}

/* Hide all tab content by default */
.lsep-tab-content {
    display: none;
}

/* Show active tab content */
.lsep-tab-content.active {
    display: block;
}

/* Get started content styling */
.lsep-get-started-content {
    background: #fff;
    padding: 20px;
    margin: 15px auto;
    border-radius: 10px;
    border: 1px solid #ddd;
}

/* Two-column layout */
.lsep-content-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.lsep-content-left {
    flex: 1;
    min-width: 0; /* Prevents flex item from overflowing */
}

.lsep-content-right {
    flex: 1;
    min-width: 300px;
}

/* Video section styling */
.lsep-video-section {
    padding: 20px;
}

.lsep-video-section h4 {
    color: #1bb95a;
    margin-bottom: 15px;
    font-size: 16px;
    text-align: center;
}

.lsep-video-container {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
}

.lsep-video-container iframe {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.lsep-video-description {
    text-align: center;
    color: #666;
    font-size: 14px;
    line-height: 1.4;
    margin: 0;
}

.lsep-get-started-content h3 {
    color: #1bb95a;
    margin-bottom: 15px;
    font-size: 18px;
}

.lsep-get-started-content h4 {
    color: #333;
    margin: 20px 0 10px 0;
    font-size: 16px;
}

.lsep-get-started-content ul {
    margin: 10px 0;
    padding-left: 20px;
}

.lsep-get-started-content li {
    margin-bottom: 5px;
    line-height: 1.5;
}

.lsep-get-started-content .lsep-content-left ul {
    list-style-type: disc !important;
    list-style-position: outside;
    margin-left: 1.5em;
    padding-left: 0;
}
.lsep-get-started-content .lsep-content-left ul li {
    display: list-item !important;
}

.lsep-get-started-content p {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Responsive design for mobile */
@media only screen and (max-width: 768px) {
    .lsep-content-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .lsep-content-right {
        min-width: auto;
    }
    
    .lsep-video-container iframe {
        height: 200px;
    }
}