.ahs-dp-body {
    background-color: #111;
    color: #ccc;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

.ahs-dp-container {
    max-width: 550px;
    width: 100%;
}

.ahs-dp-card {
    background-color: #1e1e1e;
    border-radius: 12px;
    padding: 30px;
}

.ahs-dp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ahs-dp-logo {
    max-height: 55px;
    min-height: 35px;
    object-fit: contain;
}

.ahs-dp-invoice {
    text-align: right;
}

.ahs-dp-invoice h3 {
    color: #fff;
    font-size: 18px;
    margin: 0;
}

.ahs-dp-invoice p {
    font-style: italic;
    font-size: 14px;
    margin: 5px 0 0 0;
}

.ahs-dp-divider {
    margin: 50px 0 25px;
    border-top: 1px solid #333;
}

.ahs-dp-message,
.ahs-dp-footer {
    margin: 20px 0;
}

.ahs-dp-table {
    margin-bottom: 20px;
}

.ahs-dp-row {
    display: flex;
    padding: 8px 0;
    border-bottom: 1px solid #2d2d2d;
    align-items: flex-start;
}

.ahs-dp-label {
    width: 25%;
    font-weight: bold;
    word-break: break-word;
}

.ahs-dp-value {
    width: 75%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    text-align: right;
}

.ahs-dp-button-section {
    margin-top: 30px;
}

.ahs-dp-button {
    background: #1e90ff; /* Biru Royal */
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: block;
    width: 100%;
    text-align: center;
    transition: background 0.3s ease-in-out, transform 0.2s;
    box-shadow: 0 4px 10px rgba(30, 144, 255, 0.3);
    margin-bottom: 15px;
}

/* Hover effect */
.ahs-dp-button:hover {
    background: #3399ff; /* Lebih terang sedikit */
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(30, 144, 255, 0.4);
}

/* Active/Click Effect */
.ahs-dp-button:active {
    transform: translateY(1px);
    box-shadow: 0 3px 8px rgba(30, 144, 255, 0.3);
}

.sand-icon {
	font-size: 50px;
	color: #2b8a3e;
	margin-bottom: 20px;
	text-align: center;
}

/* Disabled State */
.ahs-dp-button:disabled {
    background: #555;
    cursor: not-allowed;
    box-shadow: none;
}

.ahs-dp-footer a {
    color: #35E2FF;
    text-decoration: underline;
    font-weight: bold;
}

.ahs-dp-footer a:hover {
    color: #fff;
}

@media (max-width: 600px) {
    .ahs-dp-header {
        flex-direction: column;
    }
}