/**
 * iLinks Public Styles
 */

/* Links */
a.ilink {
    text-decoration: underline;
}

a.ilink-smart {
    border-bottom: 1px dotted currentColor;
    text-decoration: none;
}

/* Buttons */
.ilink-button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.ilink-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Button Styles */
.ilink-button-primary {
    background: #3498db;
    color: #fff;
}

.ilink-button-primary:hover {
    background: #2980b9;
    color: #fff;
}

.ilink-button-secondary {
    background: #95a5a6;
    color: #fff;
}

.ilink-button-secondary:hover {
    background: #7f8c8d;
    color: #fff;
}

.ilink-button-success {
    background: #27ae60;
    color: #fff;
}

.ilink-button-success:hover {
    background: #219a52;
    color: #fff;
}

.ilink-button-danger {
    background: #e74c3c;
    color: #fff;
}

.ilink-button-danger:hover {
    background: #c0392b;
    color: #fff;
}

/* Button Sizes */
.ilink-button-small {
    padding: 8px 16px;
    font-size: 14px;
}

.ilink-button-medium {
    padding: 12px 24px;
    font-size: 16px;
}

.ilink-button-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Button with Icon */
.ilink-button .dashicons {
    vertical-align: middle;
    margin-right: 8px;
}
