.vtfd-getting-started {
    max-width: 1200px;
    margin: 20px 20px 0 0;
}

/* Banner */
.vtfd-welcome-banner {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #2271b1;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.vtfd-welcome-banner h1 {
    margin: 0;
    color: #1d2327;
    font-size: 24px;
}

.vtfd-version {
    color: #646970;
    margin: 5px 0 0;
}

/* Quick Actions */
.vtfd-quick-actions {
    margin-bottom: 30px;
}

.vtfd-quick-actions .button {
    margin-right: 10px;
    padding: 5px 15px;
    height: auto;
    display: inline-flex;
    align-items: center;
}

.vtfd-quick-actions .dashicons {
    margin-right: 5px;
}

/* Grid Layout */
.vtfd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* Cards */
.vtfd-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.vtfd-card h2 {
    display: flex;
    align-items: center;
    margin-top: 0;
    color: #1d2327;
    font-size: 18px;
}

.vtfd-card h2 .dashicons {
    margin-right: 10px;
    color: #2271b1;
}

/* Steps */
.vtfd-steps {
    margin: 0;
    padding-left: 20px;
}

.vtfd-steps li {
    margin-bottom: 15px;
    padding-left: 5px;
}

.vtfd-steps li.completed {
    color: #1d2327;
    font-weight: 500;
}

.vtfd-steps .dashicons-yes-alt {
    color: #46b450;
    margin-left: 5px;
}

/* Templates Preview */
.vtfd-template-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.vtfd-template-item {
    text-align: center;
}

.vtfd-template-item img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid #dcdcde;
}

.vtfd-template-item h4 {
    margin: 10px 0;
    color: #1d2327;
}

/* Support Links */
.vtfd-support-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.vtfd-support-links li {
    margin-bottom: 15px;
}

.vtfd-support-links a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #2271b1;
}

.vtfd-support-links .dashicons {
    margin-right: 8px;
}

/* Footer */
.vtfd-footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    color: #646970;
}

/* Responsive Design */
@media screen and (max-width: 782px) {
    .vtfd-grid {
        grid-template-columns: 1fr;
    }
    
    .vtfd-quick-actions .button {
        margin-bottom: 10px;
        width: 100%;
        justify-content: center;
    }
} 