.ac-confession-wall {
    max-width: 800px;
    margin: 20px auto;
}

.ac-wall-header {
    text-align: center;
    margin-bottom: 30px;
}

.ac-confessions-list {
    display: grid;
    gap: 20px;
}

.ac-confession-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    position: relative;
}

.ac-confession-category {
    display: inline-block;
    padding: 4px 12px;
    background: #667eea;
    color: #fff;
    border-radius: 12px;
    font-size: 12px;
    margin-bottom: 10px;
}

.ac-confession-content {
    font-size: 16px;
    line-height: 1.6;
    margin: 15px 0;
}

.ac-reactions {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.ac-reaction-btn {
    padding: 6px 12px;
    background: #f3f4f6;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.ac-reaction-btn:hover {
    background: #e5e7eb;
    transform: scale(1.1);
}

.ac-report-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px 8px;
    background: #fee2e2;
    color: #dc2626;
    border: none;
    border-radius: 4px;
    font-size: 11px;
    cursor: pointer;
}

.ac-submit-form {
    max-width: 600px;
    margin: 30px auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    border-radius: 12px;
    color: #fff;
}

.ac-notice {
    background: rgba(255,255,255,0.2);
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.ac-field {
    margin-bottom: 20px;
}

.ac-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.ac-field select,
.ac-field textarea {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
}

.ac-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.ac-btn-primary {
    background: #f59e0b;
    color: #fff;
}
