.envato-manager-wrapper { max-width: 960px; margin: 40px auto; font-family: -apple-system,system-ui,"Segoe UI",Roboto,sans-serif; line-height: 1.6; }
.envato-header { text-align: center; margin-bottom: 48px; }
.envato-header h2 { font-size: 30px; margin: 0 0 8px; color: #1e293b; font-weight: 700; }
.envato-header p { color: #64748b; font-size: 16px; }

.envato-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.35s ease;
}
.envato-card:hover { transform: translateY(-6px); box-shadow: 0 20px 45px rgba(0,0,0,0.12); }

.envato-card h3 {
    margin: 0 0 24px;
    font-size: 20px;
    color: #1e293b;
    font-weight: 600;
    position: relative;
    padding-left: 14px;
}
.envato-card h3::before {
    content: ''; position: absolute; left: 0; top: 4px; bottom: 4px;
    width: 5px; background: #3b82f6; border-radius: 3px;
}

/* Input + Button */
.envato-input-group { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
#envato_token {
    flex: 1; min-width: 300px;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 16px;
    transition: all 0.3s;
}
#envato_token:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 5px rgba(59,130,246,0.15);
}
#envato-token-form button, .btn-danger {
    padding: 0 32px;
    height: 56px;
    border: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}
#envato-token-form button {
    background: #3b82f6;
    color: white;
    box-shadow: 0 6px 20px rgba(59,130,246,0.3);
}
#envato-token-form button:hover { background: #2563eb; transform: translateY(-2px); }

/* Token List */
.envato-token-grid { display: grid; gap: 16px; }
.envato-token-item {
    display: flex; justify-content: space-between; align-items: center;
    background: #f8fafc;
    padding: 18px 24px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    background-color: #a7f4c259;
}
.token-username { font-size: 17px; font-weight: 600; color: #1e293b; }
.token-date { font-size: 13px; color: #64748b; margin-top: 4px; }
.btn-danger {
    background: #ef4444;
    color: white;
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
}
.btn-danger:hover { background: #dc2626; }

/* Messages */
#token-result:empty { display: none; }
.success-msg, #token-result .success-msg { background: #ecfdf5; color: #065f46; border-left: 5px solid #10b981; }
.error-msg, #token-result .error-msg { background: #fef2f2; color: #991b1b; border-left: 5px solid #ef4444; }
#token-result > div {
    padding: 16px 20px;
    border-radius: 12px;
    margin-top: 16px;
    font-weight: 500;
}

/* Help box */
.permissions { margin: 12px 0 16px 20px; }
.permissions li { margin: 6px 0; }
.warning { color: #dc2626; font-weight: 600; margin-top: 16px; }

/* Responsive */
@media (max-width: 640px) {
    .envato-input-group { flex-direction: column; }
    #envato_token { width: 100%; }
    #envato-token-form button { width: 100%; }
}