

.rco-track-order {
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.rco-track-order h2 {
    text-align: center;
    margin-bottom: 20px;
}

.rco-track-order form {
    display: flex;
    flex-direction: column;
}

.rco-track-order label {
    margin-bottom: 5px;
    font-weight: bold;
}

.rco-track-order input[type="text"],
.rco-track-order input[type="email"] {
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.rco-track-order input[type="submit"] {
    padding: 10px;
    background: #ff5733;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.rco-track-order input[type="submit"]:hover {
    background: #e04e2b;
}

#rco-track-result {
    margin-top: 20px;
    padding: 10px;
    border-radius: 4px;
}

#rco-track-result.success {
    background: #dff0d8;
    color: #3c763d;
}

#rco-track-result.error {
    background: #f2dede;
    color: #a94442;
}






.rcg-container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.rcg-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

.rcg-container label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

.rcg-container input,
.rcg-container select {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.rcg-container .family-members {
    margin-top: 20px;
}

.rcg-container .family-members table {
    width: 100%;
    border-collapse: collapse;
}

.rcg-container .family-members th,
.rcg-container .family-members td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.rcg-container .family-members th {
    background-color: #f4f4f4;
}

.rcg-container .add-member-btn,
.rcg-container .remove-member-btn,
.rcg-container .generate-btn {
    padding: 10px 20px;
    margin: 10px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.rcg-container .add-member-btn {
    background-color: #28a745;
    color: white;
}

.rcg-container .remove-member-btn {
    background-color: #dc3545;
    color: white;
}

.rcg-container .generate-btn {
    background-color: #007bff;
    color: white;
    width: 100%;
}

@media (max-width: 600px) {
    .rcg-container {
        padding: 10px;
    }

    .rcg-container .family-members table,
    .rcg-container .family-members th,
    .rcg-container .family-members td {
        display: block;
        width: 100%;
    }

    .rcg-container .family-members th {
        display: none;
    }

    .rcg-container .family-members td {
        border: none;
        border-bottom: 1px solid #ddd;
        position: relative;
        padding-left: 50%;
    }

    .rcg-container .family-members td:before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        width: 45%;
        font-weight: bold;
    }
}