/* HR Preview Container (A4 Proportions) */
.hr-container {
    background: white;
    width: 210mm;
    min-height: 296mm;
    max-height: 296.5mm;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 20mm;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    font-size: 11pt;
    line-height: 1.5;
    position: relative;
    display: flex;
    flex-direction: column;
}

.hr-document {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Common Header */
.hr-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 15px;
    margin-bottom: 30px;
}
.hr-company-info h1 {
    margin: 0 0 5px 0;
    font-size: 20pt;
    color: var(--primary-color);
}
.hr-company-info p { margin: 2px 0; font-size: 9pt; }

/* Document Title */
.hr-title {
    text-align: center;
    font-size: 18pt;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-decoration: underline;
}

/* Letter Layout */
.hr-date-ref {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-weight: bold;
}
.hr-salutation {
    margin-bottom: 20px;
}
.hr-body {
    text-align: justify;
    margin-bottom: 30px;
}
.hr-body p {
    margin-bottom: 15px;
}

.hr-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}
.hr-table th, .hr-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}
.hr-table th {
    background-color: #f9f9f9;
    font-weight: bold;
    width: 40%;
}

/* Signatories */
.hr-signatories {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 50px;
}
.hr-sign-box {
    text-align: center;
    width: 200px;
}
.hr-sign-line {
    border-top: 1px solid #000;
    margin-bottom: 5px;
}

/* Certificate Layout Specifics */
.hr-certificate {
    border: 10px solid var(--primary-color);
    padding: 15mm;
    text-align: center;
    height: 100%;
    box-sizing: border-box;
}
.hr-certificate .hr-header {
    border-bottom: none;
    justify-content: center;
    margin-bottom: 10px;
}
.hr-certificate .hr-company-info {
    text-align: center;
}
.hr-certificate .hr-title {
    font-size: 28pt;
    margin-top: 20px;
    margin-bottom: 40px;
    text-decoration: none;
}
.hr-cert-body {
    font-size: 14pt;
    line-height: 1.8;
    margin-bottom: 40px;
}
.hr-cert-name {
    font-size: 22pt;
    font-weight: bold;
    color: var(--primary-color);
    margin: 15px 0;
    text-transform: uppercase;
}
.hr-cert-signatories {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    padding: 0 40px;
}

/* Receipt Specifics */
.hr-receipt-box {
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 5px;
}
.hr-amount-large {
    font-size: 24pt;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    margin: 20px 0;
}
