/* Elementor Affiliate Manager Frontend Styles */

/* アフィリエイトウィジェット共通スタイル */
.eam-affiliate-wrapper,
.eam-affiliate-random-wrapper {
    display: inline-block;
    max-width: 100%;
}

/* アフィリエイトテーブルのレスポンシブ対応 */
.eam-affiliate-wrapper table,
.eam-affiliate-random-wrapper table {
    max-width: 100%;
    height: auto;
}

.eam-affiliate-wrapper img,
.eam-affiliate-random-wrapper img {
    max-width: 100%;
    height: auto;
}

/* Elementorエディタ内のプレースホルダー */
.elementor-editor-active .eam-affiliate-placeholder {
    padding: 20px;
    background-color: #f8f8f8;
    border: 2px dashed #ddd;
    text-align: center;
    color: #666;
    font-style: italic;
}

/* ランダムウィジェットのトランジション */
.eam-affiliate-random-wrapper {
    transition: opacity 0.3s ease;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .eam-affiliate-wrapper table[style*="width:300px"],
    .eam-affiliate-random-wrapper table[style*="width:300px"] {
        width: 100% !important;
    }
    
    .eam-affiliate-wrapper td[style*="width:44px"],
    .eam-affiliate-random-wrapper td[style*="width:44px"] {
        width: 60px !important;
    }
    
    .eam-affiliate-wrapper a img,
    .eam-affiliate-random-wrapper a img {
        width: 100% !important;
        height: auto !important;
    }
}

/* カスタムスタイルのサンプル */
.eam-affiliate-wrapper.style-shadow,
.eam-affiliate-random-wrapper.style-shadow {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 10px;
    background-color: #fff;
    border-radius: 5px;
}

.eam-affiliate-wrapper.style-border,
.eam-affiliate-random-wrapper.style-border {
    border: 1px solid #e0e0e0;
    padding: 10px;
    border-radius: 5px;
}

/* ローディング状態 */
.eam-affiliate-loading {
    position: relative;
    min-height: 100px;
}

.eam-affiliate-loading:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3498db;
    border-radius: 50%;
    animation: eam-spin 1s linear infinite;
}

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


/* 大きいサイズ用のクラス */
.eam-size-large table {
    width: 450px !important;
}

.eam-size-large td:first-child {
    width: 88px !important;
}

.eam-size-large img {
    width: 88px !important;
    height: 88px !important;
}

/* 特大サイズ用のクラス */
.eam-size-xlarge table {
    width: 600px !important;
}

.eam-size-xlarge td:first-child {
    width: 120px !important;
}

.eam-size-xlarge img {
    width: 120px !important;
    height: 120px !important;
}