h3 {
    font-family: 'Poppins', sans-serif;
    color: #5ec3b5;
    font-size: 2em;
    margin-bottom: 20px;
}
.my-plugins-breadcrumb {
    margin-bottom: 24px;
    font-size: 15px;
    color: #5ec3b5;
    font-family: 'Poppins', sans-serif;
}
.my-plugins-breadcrumb a {
    color: #5ec3b5;
    text-decoration: none;
    transition: color 0.2s;
}
.my-plugins-breadcrumb a:hover {
    color: #f9a620;
    text-decoration: underline;
}
/* Button Styles */
.button {
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 32px;
    font-size: 1em;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.button-yellow {
    background: #f9a620;
}
.button-yellow:hover {
    background: #5ec3b5;
}
.button-green {
    background: #5ec3b5;
}
.button-green:hover {
    background: #f9a620;
}
.button.button-red {
    background: #e57373;
}
.button.button-red:hover {
    background: #d32f2f;
}
.button.button-blue {
    background: #0073aa;
}

.button.button-blue:hover {
    background: #4ba89b;
}
/* Success/Error Notices */
.notice-success {
    background: #e6f7f5;
    color: #388e3c;
    border-left: 5px solid #5ec3b5;
    padding: 12px 18px;
    border-radius: 6px;
    margin-bottom: 18px;
    font-size: 1.08em;
}

.notice-error {
    background: #ffeaea;
    color: #d32f2f;
    border-left: 5px solid #d32f2f;
    padding: 12px 18px;
    border-radius: 6px;
    margin-bottom: 18px;
    font-size: 1.08em;
}

/* Post List Grid Styles */
.my-plugins-post-list-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
    margin-bottom: 32px;
}
.my-plugins-post-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    flex: 1 1 calc(33.333% - 24px);
    max-width: calc(33.333% - 24px);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 12px 24px 12px;
    box-sizing: border-box;
    margin-bottom: 0;
}
.my-plugins-post-img {
    width: 100%;
    max-width: 350px;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 16px;
    background: #f0f0f0;
}
.my-plugins-post-title {
    font-family: 'Poppins', sans-serif;
    color: #5ec3b5;
    font-size: 1.2em;
    margin: 12px 0 16px 0;
    text-align: center;
}
.my-plugins-post-btn {
    margin-top: auto;
    width: 100%;
    text-align: center;
}

@media (max-width: 900px) {
    .my-plugins-post-item {
        flex: 1 1 calc(50% - 24px);
        max-width: calc(50% - 24px);
    }
}
@media (max-width: 600px) {
    .my-plugins-post-list-grid {
        flex-direction: column;
        gap: 18px;
    }
    .my-plugins-post-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
