.phcwp-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

.phcwp-container #phcwp-template {
    width: 100%;
    max-width: 600px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px;
    box-sizing: border-box;
}

.phcwp-container #phcwp-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.phcwp-container #phcwp-form .form-row {
    display: flex;
    width: 100%;
    margin-bottom: 10px;
}

.phcwp-container input[type="text"] {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    box-sizing: border-box;
}

.phcwp-container input[type="submit"] {
    padding: 10px 20px;
    background-color: #2e3741;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.phcwp-container input[type="submit"]:hover {
    background-color: #15263c;
}

.phcwp-container h1 {
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    line-height: normal;
}

.phcwp-container #phcwp-loader {
    margin: 20px 0;
    font-style: italic;
    color: #666;
    text-align: center;
}

.phcwp-container #phcwp-loader img {
    height: 80px;
}

.phcwp-container #phcwp-results {
    width: 100%;
    margin-top: 20px;
}

.phcwp-container table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.phcwp-container th,
.phcwp-container td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    text-transform: capitalize;
}

.phcwp-container th {
    background-color: #f8f8f8;
    font-weight: bold;
}

.phcwp-container .summary {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.phcwp-container .summary-item {
    padding: 8px 12px;
    border-radius: 4px;
    color: white;
    font-size: 14px;
}

.phcwp-container .total {
    background-color: #2e3741;
}

.phcwp-container .success {
    background-color: #28a745;
}

.phcwp-container .failed {
    background-color: #dc3545;
}

.phcwp-container .progress-bar {
    display: flex;
    height: 24px;
    overflow: hidden;
    font-size: 12px;
    background-color: #e9ecef;
    border-radius: 4px;
}

.phcwp-container .progress-bar-fill {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    text-align: center;
    white-space: nowrap;
    transition: width 0.6s ease;
}

.phcwp-container .progress-bar-success {
    background-color: #28a745;
}

.phcwp-container .progress-bar-failed {
    background-color: #dc3545;
}
