/* ============================
   WRAPPER
============================ */
.nova-sender {
    font-family: inherit;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

/* ============================
   CARD STYLE
============================ */
.ns-card {
    background: #ffffff;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.ns-card h3 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}

.ns-card p {
    font-size: 13px;
    color: #555;
    text-align: center;
}

/* ============================
   TEXTAREA
============================ */
#ns-names,
#ns-message {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 10px;
    font-size: 14px;
    min-height: 80px;
    margin-bottom: 15px;
    resize: vertical;
}

/* ============================
   TEMPLATE BUTTONS
============================ */
.ns-template-buttons {
    text-align: center;
    margin-bottom: 15px;
}

.ns-template-buttons .ns-btn {
    display: inline-block;
    padding: 6px 12px;
    margin: 3px;
    font-size: 12px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    color: #fff;
}

.ns-btn.formal,
.ns-btn.muslim,
.ns-btn.nasrani,
.ns-btn.hindu {
    background: #477dcc;
}

.ns-btn:hover {
    opacity: 0.9;
}

/* ============================
   GENERATE BUTTON
============================ */
.ns-btn-generate {
    display: block;
    width: 100%;
    background: #28a745;
    color: #fff;
    padding: 10px 0;
    border-radius: 6px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    margin-top: 10px;
}

.ns-btn-generate:hover {
    background: #218838;
}

/* ============================
   TABLE
============================ */
.ns-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.ns-table th,
.ns-table td {
    border: 1px solid #ddd;
    padding: 8px;
}

.ns-table th {
    background: #f7f7f7;
    text-align: center;
    font-weight: 600;
}

.ns-table td {
    vertical-align: middle;
}

/* ============================
   ACTION BUTTONS
============================ */
.ns-actions {
    text-align: center;
    white-space: nowrap;
}

.ns-actions button,
.ns-actions a {
    display: inline-block;
    padding: 4px 8px;
    margin: 2px;
    font-size: 11px;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    color: #fff;
}

.ns-btn-copy {
    background: #ffc107;
    color: #000 !important;
}

.ns-btn-copy:hover {
    background: #e0a800;
}

.ns-btn-wa {
    background: #25d366;
}

.ns-btn-wa:hover {
    background: #1ebe57;
}

.ns-btn-waapi {
    background: #128c7e;
}

.ns-btn-waapi:hover {
    background: #0f6f63;
}

.ns-btn-copyname {
    background: #6c757d;
}

.ns-btn-copyname:hover {
    background: #5a6268;
}

/* ============================
   TOAST NOTIFICATION
============================ */
.ns-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ffc107;
    color: #000;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 9999;
}

.ns-toast.show {
    opacity: 1;
    transform: translateY(0);
}
