/* WCFM Private Button Styles */

.wcfm-private-btn {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    color: white !important;
}

.wcfm-private-btn:hover {
    background-color: #5a6268 !important;
    border-color: #545b62 !important;
    color: white !important;
}

.wcfm-private-btn:disabled {
    background-color: #999 !important;
    border-color: #999 !important;
    color: #ccc !important;
    cursor: not-allowed !important;
}

/* メッセージスタイル */
.wcfm-message.wcfm-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    border: 1px solid;
}

.wcfm-message.wcfm-error {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 15px;
    border: 1px solid;
}

.wcfm-message span.wcicon-status-completed,
.wcfm-message span.wcicon-status-cancelled {
    margin-right: 8px;
    font-weight: bold;
}

.wcfm-message span.wcicon-status-completed::before {
    content: "✓";
    color: #28a745;
}

.wcfm-message span.wcicon-status-cancelled::before {
    content: "✗";
    color: #dc3545;
}