.pbc-container {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    max-width: 1000px;
    margin: 20px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.pbc-title {
    color: #3498db;
    text-align: center;
    margin-bottom: 30px;
}

.pbc-parent-pokemon {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.pbc-parent {
    width: 48%;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.pbc-label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.pbc-select, .pbc-input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.pbc-button {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #2ecc71;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    margin-bottom: 10px;
}

.pbc-button:hover {
    background-color: #27ae60;
}

.pbc-results {
    margin-top: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.pbc-advanced-features {
    margin-top: 30px;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.pbc-checkbox-label {
    display: inline-block;
    margin-right: 15px;
}

#pbc-eggMoves {
    height: 100px;
}

.pbc-guides {
    margin-top: 30px;
}

.pbc-tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
    border-radius: 8px 8px 0 0;
}

.pbc-tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
	color:red;
}

.pbc-tab button:hover {
    background-color: #ddd;
}

.pbc-tab button.active {
    background-color: #3498db;
    color: white;
}

.pbc-tabcontent {
    display: none;
    padding: 20px;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 8px 8px;
}