.php3d-container {
font-family: 'Roboto', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
max-width: 1000px;
margin: 0 auto;
background-color: #ffffff;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
overflow: hidden;
} .php3d-tabs {
display: flex;
background-color: #f3f4f6;
border-bottom: 1px solid #e5e7eb;
}
.php3d-tab {
padding: 16px 24px;
cursor: pointer;
color: #6b7280;
text-decoration: none;
font-weight: 500;
display: flex;
align-items: center;
transition: all 0.3s ease;
}
.php3d-tab.active {
color: #4f46e5;
border-bottom: 3px solid #4f46e5;
}
.php3d-tab-icon {
width: 18px;
height: 18px;
margin-right: 8px;
}
.php3d-tab-content {
display: none;
padding: 24px;
}
.php3d-tab-content.active {
display: block;
} .php3d-form-group {
margin-bottom: 20px;
}
.php3d-form-group label {
display: block;
margin-bottom: 5px;
font-weight: 500;
color: #374151;
}
.php3d-form-group input,
.php3d-form-group select {
width: 100%;
padding: 10px 12px;
border: 1px solid #d1d5db;
border-radius: 4px;
font-size: 14px;
}
.php3d-input-group {
position: relative;
display: flex;
align-items: stretch;
width: 100%;
}
.php3d-input-prefix {
display: flex;
align-items: center;
padding: 0 12px;
background-color: #f3f4f6;
border: 1px solid #d1d5db;
border-right: none;
border-radius: 4px 0 0 4px;
color: #374151;
}
.php3d-input-group input {
border-radius: 0 4px 4px 0;
flex: 1;
} .php3d-button {
padding: 10px 16px;
background-color: #4f46e5;
color: white;
font-weight: 500;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s;
}
.php3d-button:hover {
background-color: #4338ca;
}
.php3d-button-secondary {
background-color: #9ca3af;
}
.php3d-button-secondary:hover {
background-color: #6b7280;
}
.php3d-buttons {
display: flex;
gap: 10px;
margin-bottom: 20px;
} @media (max-width: 768px) {
.php3d-tabs {
flex-direction: column;
}
.php3d-tab {
border-bottom: 1px solid #e5e7eb;
}
.php3d-tab.active {
border-bottom: 1px solid #e5e7eb;
border-left: 3px solid #4f46e5;
}
}