/* === Wrapper === */
.acm-wrapper {
    min-height: 100vh;
    background: radial-gradient(circle at top, #1b1b1b, #000);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

#wpfooter{
	display:none;
}

/* === Card === */
.acm-card {
    width: 100%;
    max-width: 420px;
    background: rgba(20, 20, 20, 0.9);
    border-radius: 18px;
    padding: 28px;
    box-shadow:
        0 0 40px rgba(233, 30, 99, 0.25),
        inset 0 0 0 1px rgba(255,255,255,0.05);
    color: #fff;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* === Titles === */
.acm-card h2 {
    text-align: center;
    margin-bottom: 6px;
    font-size: 24px;
}

.acm-subtitle {
    text-align: center;
    color: #aaa;
    margin-bottom: 20px;
}

/* === Fields === */
.acm-field {
    margin-bottom: 18px;
}

.acm-field label {
    font-size: 14px;
    color: #ccc;
}

.acm-field input,
.acm-field textarea {
	
	padding-top: 4px !important;
 	padding-bottom: 4px !important;

    width: 100%;
    margin-top: 6px;
/*     padding: 14px; */
    border-radius: 12px;
    border: none;
    background: #0f0f0f;
    color: #7e7e7e !important;
    font-size: 16px;
    outline: none;
}

.acm-field input:focus,
.acm-field textarea:focus {
    box-shadow: 0 0 0 2px #e91e63;
}

.acm-field textarea {
    resize: none;
    min-height: 90px;
}

/* === Counter === */
.acm-counter {
    text-align: right;
    font-size: 12px;
    color: #777;
    margin-top: 4px;
}

/* === Button === */
.acm-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #e91e63, #ff4081);
    border: none;
    border-radius: 14px;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.acm-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(233,30,99,0.4);
}

/* === Success === */
.acm-success {
    text-align: center;
    font-size: 22px;
    padding: 30px 10px;
    color: #00ffb0;
}

/* === Disclaimer === */
.acm-disclaimer {
    text-align: center;
    font-size: 12px;
    color: #777;
    margin-top: 14px;
}
.acm-error {
    background: rgba(255, 82, 82, 0.15);
    border: 1px solid rgba(255, 82, 82, 0.4);
    color: #ff9a9a;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 14px;
}

.acm-inbox{
	max-height: 80vh;          /* 80% of viewport height */
overflow-y: auto;          /* Vertical scrollbar when needed */
overflow-x: hidden;        /* No horizontal scroll */
border: 1px solid #ddd;    /* Visual boundary */
}
.acm-approved-wrapper{
	align-items: flex-start;
}