
.plugin-container {
    display: flex;
    /*justify-content: center;*/
    /*align-items: center;*/
    /*height: 100vh;*/
    background-color: #f4f4f4;
    padding: 20px;
}

.plugin-card {
    width: 90%;
    max-width: 1000px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.plugin-card img {
    width: 100%;
    height: 400px;
    border-radius: 10px;
}

.plugin-card-content {
    padding: 20px 0;
}

.plugin-card h2 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

.plugin-card p {
    font-size: 16px;
    color: #555;
}

.plugin-card .button-primary {
    display: inline-block;
    padding: 10px 20px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

.plugin-card .button-primary:hover {
    background: #005f8d;
}
.plugin-card .button-secondary {
    display: inline-block;
    padding: 10px 20px;
    background: #b62220;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

.plugin-card .button-secondary:hover {
    background: #b62220;
    color: #fff;
}




/* Center the form */
.rtd-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f8f8f8;
}

/* Card Style */
.rtd-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    text-align: left;
}

/* Logo */
.rtd-header {
    text-align: center;
    margin-bottom: 20px;
}

.rtd-logo {
    max-width: 250px;
    height: auto;
}

/* Form Labels */
.rtd-card label {
    display: block;
    font-weight: bold;
    margin-top: 10px;
    font-size: 14px;
}

/* Input Fields */
.rtd-card input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    margin-top: 5px;
}

/* Save Button */
.rtd-card input[type="submit"] {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 15px;
    width: 100%;
}

.rtd-card input[type="submit"]:hover {
    background-color: #005f8d;
}

/* API Key Note */
.rtd-note {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.order-status {
    display: inline-flex;
    line-height: 2em;
    color: #454545;
    background: #e5e5e5;
    border-radius: 4px;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    margin: -.25em 0;
    cursor: inherit !important;
    white-space: nowrap;
    max-width: 100%;
}
.order-status.status-processing {
    background: #c6e1c6;
    color: #2c4700;
}
.order-status.status-completed {
    background: #c8d7e1;
    color: #003d66;
}
.order-status.status-pending {
    background: #c3c4c7;
    color: #2c4700;
}
.order-status>span {
    margin: 0 1em;
    overflow: hidden;
    text-overflow: ellipsis;
}
