.amiroda-activation-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.amiroda-activation-header {
    text-align: center;
    margin-bottom: 40px;
}

.amiroda-activation-header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.amiroda-step {
    padding: 30px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}

.amiroda-colleague-card {
    border: 2px solid #4CAF50;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

.colleague-icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.colleague-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 20px 0;
}

.colleague-features li {
    padding: 8px 0;
}

.colleague-price {
    font-size: 32px;
    font-weight: bold;
    color: #4CAF50;
    margin: 20px 0;
}

.colleague-price .period {
    font-size: 18px;
    color: #666;
}

.amiroda-btn {
    padding: 15px 30px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.amiroda-btn-primary {
    background: #4285f4;
    color: white;
}

.amiroda-btn-primary:hover {
    background: #357ae8;
}

.amiroda-btn-success {
    background: #4CAF50;
    color: white;
}

.amiroda-btn-success:hover {
    background: #45a049;
}

#amiroda-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #4CAF50;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.amiroda-success-message {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    padding: 20px;
    margin: 20px 0;
}

.amiroda-success-message p {
    margin: 10px 0;
    font-size: 18px;
}
